Files
n8n-nodes-gwezz-changdunovel/node_modules/@n8n/node-cli/dist/commands/dev/utils.d.ts
2025-10-26 23:10:15 +08:00

13 lines
451 B
TypeScript

import { type ChildProcess } from 'node:child_process';
import type { Formatter } from 'picocolors/types';
export declare function commands(): {
runPersistentCommand: (cmd: string, args: string[], opts?: {
cwd?: string;
env?: NodeJS.ProcessEnv;
name?: string;
color?: Formatter;
allowOutput?: (line: string) => boolean;
}) => ChildProcess;
};
export declare function readPackageName(): Promise<string>;