5 lines
308 B
TypeScript
5 lines
308 B
TypeScript
import type { SetValue } from '../types.js';
|
|
export declare const NPM_CLIENTS: Set<"npm" | "yarn" | "pnpm" | "bun" | "deno">;
|
|
export type NpmClient = SetValue<typeof NPM_CLIENTS>;
|
|
export declare const getNpmClient: () => NpmClient;
|
|
export declare const getNpmInstallCommand: (packageName: string) => string;
|