Files
JavaScriptServices/templates/package-builder/typings/npm-which/npm-which.d.ts

9 lines
211 B
TypeScript

declare module 'npm-which' {
interface NpmWhichContext {
sync(executableName: string): string;
}
function defaultFunction(rootDir: string) : NpmWhichContext;
export = defaultFunction;
}