npm package diff
Package: @forge/bundler
Versions: 4.21.1-next.14-experimental-f55f6f2 - 4.22.0-next.16
File: package/out/typescript.d.ts
Index: package/out/typescript.d.ts
===================================================================
--- package/out/typescript.d.ts
+++ package/out/typescript.d.ts
@@ -0,0 +1,16 @@
+/// <reference types="node" />
+/// <reference types="node" />
+import { ChildProcessByStdio } from 'child_process';
+import { Readable } from 'stream';
+import { Bundler, BundleLogger, BundlerOutput, BundlerArgs, BundlerWatch, BundlerWatchArgs, BundlerWatchOutput } from './types';
+declare type OutputProcess = ChildProcessByStdio<null, Readable, null>;
+export declare abstract class TypeScriptBundler implements Bundler {
+ protected readonly logger: BundleLogger;
+ constructor(logger: BundleLogger);
+ protected runTypeScript(args: BundlerArgs, outputDir: string): OutputProcess;
+ protected getResult(args: BundlerArgs, outputDir: string): Promise<BundlerOutput>;
+ bundle(args: BundlerArgs): Promise<BundlerOutput>;
+ watch(args: BundlerWatchArgs, watch: BundlerWatch): Promise<BundlerWatchOutput>;
+}
+export {};
+//# sourceMappingURL=typescript.d.ts.map
\ No newline at end of file