now merges default options

This commit is contained in:
2016-07-17 16:34:31 +02:00
parent dc53498f22
commit 93bbe75f37
9 changed files with 99 additions and 41 deletions

7
dist/index.d.ts vendored
View File

@@ -1 +1,6 @@
export declare let dataFor: (toolNameArg: string, cwdArg?: string) => any;
export interface IDataFor {
toolName: string;
defaultSettings?: any;
cwd?: string;
}
export declare let dataFor: (optionsArg: IDataFor) => any;