mirror of
https://github.com/github/codeql-action.git
synced 2025-12-30 03:00:13 +08:00
The [release notes](https://github.com/avajs/ava/releases/tag/v4.3.3) mention compatibility with Node 18.8.
20 lines
485 B
TypeScript
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 {};
|