NeahNew/node_modules/app-builder-lib/out/node-module-collector/packageManager.d.ts
2025-05-06 22:43:27 +02:00

8 lines
298 B
TypeScript

export type PM = "npm" | "yarn" | "pnpm" | "bun";
export declare const detect: ({ cwd, includeGlobalBun }?: {
cwd?: string;
includeGlobalBun?: boolean;
}) => Promise<PM>;
export declare function getPackageManagerVersion(pm: PM): Promise<string>;
export declare function clearCache(): void;