tscoverage/dist/npmts.config.d.ts

13 lines
298 B
TypeScript
Raw Normal View History

2016-09-06 15:21:25 +00:00
export declare type npmtsMode = 'default' | 'custom';
2016-09-06 15:33:28 +00:00
export interface INpmtsConfig {
2016-08-19 07:46:36 +00:00
argv: any;
coverageTreshold: number;
mode: npmtsMode;
test: boolean;
testTs: any;
ts: any;
tsOptions: any;
2016-09-22 21:23:16 +00:00
watch: boolean;
2016-08-19 07:46:36 +00:00
}
2017-01-17 23:58:09 +00:00
export declare let run: (argvArg: any) => Promise<{}>;