2019-09-07 00:48:26 +03:00
|
|
|
interface Runner {
|
|
|
|
on(event: string, callback: (...args: Array<any>) => void): Runner;
|
|
|
|
}
|
2020-08-28 05:04:58 +03:00
|
|
|
export declare type LogFunc = (message: string) => void;
|
|
|
|
export declare function setLogFunc(logFunc: LogFunc): void;
|
2019-09-07 00:48:26 +03:00
|
|
|
export declare function Reporter(runner: Runner): void;
|
|
|
|
export {};
|