eslint-plugin-import-x
Version:
Import with sanity.
6 lines (5 loc) • 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;