2
0
mirror of synced 2025-02-24 20:18:07 +00:00

6 lines
160 B
TypeScript
Raw Normal View History

interface Runner {
on(event: string, callback: (...args: Array<any>) => void): Runner;
}
export declare function Reporter(runner: Runner): void;
export {};