5 lines
161 B
TypeScript
5 lines
161 B
TypeScript
/**
|
|
* Resolve path to package
|
|
*/
|
|
declare function resolvePathAsync(packageName: string, cwd: string): Promise<string | undefined>;
|
|
export { resolvePathAsync }; |