mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 03:19:31 +08:00
4 lines
211 B
Text
4 lines
211 B
Text
declare function loadPackageJSON(cwd?: string): Promise<Record<string, any> | null>;
|
|
declare function isPackageListed(name: string, cwd?: string): Promise<boolean>;
|
|
|
|
export { isPackageListed, loadPackageJSON };
|