tscoverage/dist/npmts.options.d.ts

16 lines
405 B
TypeScript
Raw Normal View History

2016-07-01 00:28:34 +00:00
/// <reference types="q" />
2016-09-06 15:21:25 +00:00
import 'typings-global';
import plugins = require('./npmts.plugins');
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;
docs: boolean;
mode: npmtsMode;
test: boolean;
testTs: any;
ts: any;
tsOptions: any;
}
export declare var run: (argvArg: any) => plugins.Q.Promise<{}>;