Files
discord-clone/node_modules/local-pkg/dist/shared.d.ts
2023-01-03 09:29:04 -06:00

5 lines
211 B
TypeScript

declare function loadPackageJSON(cwd?: string): Promise<Record<string, any> | null>;
declare function isPackageListed(name: string, cwd?: string): Promise<boolean>;
export { isPackageListed, loadPackageJSON };