16 lines
404 B
TypeScript
16 lines
404 B
TypeScript
/// <reference types="q" />
|
|
import "typings-global";
|
|
import plugins = require("./npmts.plugins");
|
|
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<{}>;
|