chore: include pre-built dist for github install
This commit is contained in:
+12
@@ -0,0 +1,12 @@
|
||||
type SpawnedProcess = {
|
||||
stdout: ReadableStream | null;
|
||||
stderr: ReadableStream | null;
|
||||
exited: Promise<number>;
|
||||
kill: () => void;
|
||||
};
|
||||
export declare function collectProcessOutputWithTimeout(process: SpawnedProcess, timeoutMs: number): Promise<{
|
||||
stdout: string;
|
||||
stderr: string;
|
||||
exitCode: number;
|
||||
}>;
|
||||
export {};
|
||||
Reference in New Issue
Block a user