mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
9 lines
371 B
TypeScript
9 lines
371 B
TypeScript
// Type definitions for preferred-pm 2.0
|
|
// Project: https://github.com/zkochan/packages/tree/master/preferred-pm
|
|
// Definitions by: Chuah Chee Shian <https://github.com/shian15810>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare function preferredPM(pkgPath: string): Promise<null | { name: string; version: string }>;
|
|
|
|
export = preferredPM;
|