random-bunny/app.ts
2023-01-27 22:30:51 +00:00

9 lines
154 B
TypeScript

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