tscoverage/dist/npmts.options.d.ts

16 lines
404 B
TypeScript
Raw Normal View History

2016-07-01 00:28:34 +00:00
/// <reference types="q" />
import "typings-global";
import plugins = require("./npmts.plugins");
2016-08-19 07:46:36 +00:00
export declare type npmtsMode = "default" | "custom";
export interface npmtsConfig {
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<{}>;