mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
13 lines
375 B
TypeScript
13 lines
375 B
TypeScript
// Type definitions for pkg-up 2.0
|
|
// Project: https://github.com/sindresorhus/pkg-up#readme
|
|
// Definitions by: Emily Marigold Klassen <https://github.com/forivall>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
export = pkgUp;
|
|
|
|
declare function pkgUp(cwd?: string): Promise<string>;
|
|
|
|
declare namespace pkgUp {
|
|
function sync(cwd?: string): string;
|
|
}
|