First upload version 0.0.1
This commit is contained in:
11
node_modules/node-llama-cpp/dist/utils/spawnCommand.d.ts
generated
vendored
Normal file
11
node_modules/node-llama-cpp/dist/utils/spawnCommand.d.ts
generated
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
export declare function spawnCommand(command: string, args: string[], cwd: string, env?: NodeJS.ProcessEnv, progressLogs?: boolean): Promise<{
|
||||
stdout: string;
|
||||
stderr: string;
|
||||
combinedStd: string;
|
||||
}>;
|
||||
export declare class SpawnError extends Error {
|
||||
readonly stdout: string;
|
||||
readonly stderr: string;
|
||||
readonly combinedStd: string;
|
||||
constructor(message: string, stdout: string, stderr: string, combinedStd: string);
|
||||
}
|
||||
Reference in New Issue
Block a user