@forge/bundler
6.2.1-experimental-04cc2b96.2.2-next.0
out/webpack.d.ts~
out/webpack.d.tsModified+2−2
Index: package/out/webpack.d.ts
===================================================================
--- package/out/webpack.d.ts
+++ package/out/webpack.d.ts
@@ -3,12 +3,12 @@
import { CommonOutputOptions } from './config/common';
import { Bundler, BundlerOutput, BundlerArgs, BundlerWatch, BundlerWatchArgs, BundlerWatchOutput } from './types';
export declare function handleWebpackCompilationResult(logger: Logger, err: Error | null | undefined, stats: Pick<webpack.Stats, 'hasErrors' | 'hasWarnings' | 'toJson'> | undefined): asserts stats is webpack.Stats;
export declare function getCompiler(config: webpack.Configuration): webpack.Compiler;
-export type ConfigWithOutput = webpack.Configuration & {
+export declare type ConfigWithOutput = webpack.Configuration & {
output: CommonOutputOptions;
};
-export type Configs = [ConfigWithOutput, ...ConfigWithOutput[]];
+export declare type Configs = [ConfigWithOutput, ...ConfigWithOutput[]];
export declare abstract class WebpackBundler implements Bundler {
protected readonly logger: Logger;
constructor(logger: Logger);
protected getOutput(args: BundlerArgs, config: ConfigWithOutput, stats: webpack.Stats): Promise<BundlerOutput>;