UNPKG

279 BTypeScriptView Raw
1declare module 'web-component-tester' {
2 module wct {
3 interface CLI {
4 // TODO(justinfagnani): how do you import an interface into a .d.ts file?
5 run(env: any, args: string[], stdout: any /*Stream*/): Promise<void>;
6 }
7 let cli : CLI;
8 }
9
10 export = wct;
11}