mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-23 10:08:57 +00:00
9 lines
211 B
TypeScript
9 lines
211 B
TypeScript
declare module 'npm-which' {
|
|
interface NpmWhichContext {
|
|
sync(executableName: string): string;
|
|
}
|
|
|
|
function defaultFunction(rootDir: string) : NpmWhichContext;
|
|
export = defaultFunction;
|
|
}
|