chore: include pre-built dist for github install
This commit is contained in:
Vendored
+12
@@ -0,0 +1,12 @@
|
||||
import type { RunResult } from "./types";
|
||||
export interface JsonOutputManager {
|
||||
redirectToStderr: () => void;
|
||||
restore: () => void;
|
||||
emitResult: (result: RunResult) => void;
|
||||
}
|
||||
interface JsonOutputManagerOptions {
|
||||
stdout?: NodeJS.WriteStream;
|
||||
stderr?: NodeJS.WriteStream;
|
||||
}
|
||||
export declare function createJsonOutputManager(options?: JsonOutputManagerOptions): JsonOutputManager;
|
||||
export {};
|
||||
Reference in New Issue
Block a user