/
lostSun
/
project-client-server-apps
Обзор
Документация
Войти
/
lostSun
/
project-client-server-apps
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
node_modules/pkg-up/index.d.ts
48 строк
914 B
1lostsun
initial commit
05 май 2025, 11:35
05 май 2025, 11:35
fe8f535
Код
Авторство
О чём код?
declare namespace pkgUp { interface Options { /** Directory to start from. @default process.cwd() */ readonly cwd?: string; } } declare const pkgUp: { /** Find the closest `package.json` file. @returns The filepath, or `null` if it couldn't be found. @example ``` // / // └── Users // └── sindresorhus // └── foo // ├── package.json // └── bar // ├── baz // └── example.js // example.js import pkgUp = require('pkg-up'); (async () => { console.log(await pkgUp()); //=> '/Users/sindresorhus/foo/package.json' })(); ``` */ (options?: pkgUp.Options): Promise<string | null>; /** Synchronously find the closest `package.json` file. @returns The filepath, or `null` if it couldn't be found. */ sync(options?: pkgUp.Options): string | null; }; export = pkgUp;