poku
Version:
🐷 Poku makes testing easy for Node.js, Bun, Deno, and you at the same time.
8 lines (7 loc) • 369 B
TypeScript
import type { Code } from '../../@types/code.js';
import type { Configs } from '../../@types/poku.js';
export declare const onSigint: () => boolean;
export declare function poku(targetPaths: string | string[], configs: Configs & {
noExit: true;
}): Promise<Code>;
export declare function poku(targetPaths: string | string[], configs?: Configs): Promise<undefined>;