elearning/Frontend-Learner/node_modules/eslint-plugin-import-x/lib/utils/npm-client.d.ts
2026-01-13 10:48:02 +07:00

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;