first commit
This commit is contained in:
16
node_modules/@n8n/node-cli/dist/utils/child-process.d.ts
generated
vendored
Normal file
16
node_modules/@n8n/node-cli/dist/utils/child-process.d.ts
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
import { type StdioOptions } from 'node:child_process';
|
||||
export declare class ChildProcessError extends Error {
|
||||
code: number | null;
|
||||
signal: NodeJS.Signals | null;
|
||||
constructor(message: string, code: number | null, signal: NodeJS.Signals | null);
|
||||
}
|
||||
export declare function runCommand(cmd: string, args?: string[], opts?: {
|
||||
cwd?: string;
|
||||
env?: NodeJS.ProcessEnv;
|
||||
stdio?: StdioOptions;
|
||||
context?: 'local' | 'global';
|
||||
printOutput?: (options: {
|
||||
stdout: Buffer[];
|
||||
stderr: Buffer[];
|
||||
}) => void;
|
||||
}): Promise<void>;
|
||||
Reference in New Issue
Block a user