random-bunny/app.ts

9 lines
158 B
TypeScript

import randomBunny from "./dist/index.js";
async function app() {
const result = await randomBunny('rabbits', 'hot');
console.log(result);
}
app();