tscoverage/dist/npmts.config.d.ts

13 lines
298 B
TypeScript

export declare type npmtsMode = 'default' | 'custom';
export interface INpmtsConfig {
argv: any;
coverageTreshold: number;
mode: npmtsMode;
test: boolean;
testTs: any;
ts: any;
tsOptions: any;
watch: boolean;
}
export declare let run: (argvArg: any) => Promise<{}>;