7 lines
156 B
TypeScript
7 lines
156 B
TypeScript
export interface IDataFor {
|
|
toolName: string;
|
|
defaultSettings?: any;
|
|
cwd?: string;
|
|
}
|
|
export declare let dataFor: (optionsArg: IDataFor) => any;
|