Files
n8n-nodes-gwezz-changdunovel/node_modules/eslint-plugin-import-x/lib/utils/npm-client.d.ts
2025-10-26 23:10:15 +08:00

6 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;