17 lines
388 B
TypeScript
17 lines
388 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;
|
|
runData: {
|
|
coverageLcovInfo?: string;
|
|
coverageResult?: number;
|
|
};
|
|
}
|
|
export declare let run: (argvArg: any) => Promise<{}>;
|