Files
codeql-action/node_modules/supertap/dist/index.d.ts
Henry Mercer bea5e4b220 Update ava to 4.3.3
The [release notes](https://github.com/avajs/ava/releases/tag/v4.3.3)
mention compatibility with Node 18.8.
2022-09-02 18:02:07 +01:00

20 lines
485 B
TypeScript

export declare const start: () => string;
interface Options {
index: number;
passed?: boolean;
error?: Error | Record<string, unknown>;
todo?: boolean;
skip?: boolean;
comment: string | string[];
}
export declare const test: (title: string, options: Options) => string;
interface Stats {
passed?: number;
failed?: number;
skipped?: number;
todo?: number;
crashed?: number;
}
export declare const finish: (stats: Stats) => string;
export {};