ethers.js/packages/tests/lib/reporter.d.ts

6 lines
161 B
TypeScript
Raw Normal View History

2019-09-01 07:13:35 +03:00
interface Runner {
on(event: string, callback: (...args: Array<any>) => void): Runner;
}
declare function Reporter(runner: Runner): void;
export = Reporter;