Files

5 lines
211 B
TypeScript
Raw Permalink Normal View History

2025-08-11 11:06:07 +08:00
declare function loadPackageJSON(cwd?: string): Promise<Record<string, any> | null>;
declare function isPackageListed(name: string, cwd?: string): Promise<boolean>;
export { isPackageListed, loadPackageJSON };