8 lines
277 B
TypeScript
8 lines
277 B
TypeScript
interface Runner {
|
|
on(event: string, callback: (...args: Array<any>) => void): Runner;
|
|
}
|
|
export declare type LogFunc = (message: string) => void;
|
|
export declare function setLogFunc(logFunc: LogFunc): void;
|
|
export declare function Reporter(runner: Runner): void;
|
|
export {};
|