@forge/bundler

6.2.1-experimental-04cc2b96.2.2-next.0
out/typescript.d.ts
~out/typescript.d.tsModified
+3−1
Index: package/out/typescript.d.ts
===================================================================
--- package/out/typescript.d.ts
+++ package/out/typescript.d.ts
@@ -1,9 +1,11 @@
+/// <reference types="node" />
+/// <reference types="node" />
 import { ChildProcessByStdio } from 'child_process';
 import { Readable } from 'stream';
 import { Logger } from '@forge/cli-shared';
 import { Bundler, BundlerOutput, BundlerArgs, BundlerWatch, BundlerWatchArgs, BundlerWatchOutput } from './types';
-type OutputProcess = ChildProcessByStdio<null, Readable, null>;
+declare type OutputProcess = ChildProcessByStdio<null, Readable, null>;
 export declare abstract class TypeScriptBundler implements Bundler {
     protected readonly logger: Logger;
     constructor(logger: Logger);
     protected runTypeScript(args: BundlerArgs, outputDir: string): OutputProcess;