UNPKG

eslint-plugin-import-x

Version:
6 lines (5 loc) 308 B
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;