UNPKG

poku

Version:

🐷 Poku makes testing easy for Node.js, Bun, Deno, and you at the same time.

13 lines (12 loc) 250 B
export type Control = { pause: () => void; continue: () => void; reset: () => void; }; export type EachConfigs = { status: boolean; cb?: () => unknown | Promise<unknown>; }; export type EachOptions = { immediate?: boolean; };