Last change
on this file since 1ad8e64 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
1.2 KB
|
Line | |
---|
1 | import { WebpackChunkHandler } from './WebpackChunkHandler';
|
---|
2 | import { WebpackCompiler } from './WebpackCompiler';
|
---|
3 | import { ChunkIncludeExcludeTester } from './ChunkIncludeExcludeTester';
|
---|
4 | import { ModuleCache } from './ModuleCache';
|
---|
5 | import { AssetManager } from './AssetManager';
|
---|
6 | import { Module } from './Module';
|
---|
7 | declare class WebpackCompilerHandler {
|
---|
8 | private chunkIncludeTester;
|
---|
9 | private chunkHandler;
|
---|
10 | private assetManager;
|
---|
11 | private moduleCache;
|
---|
12 | private addBanner;
|
---|
13 | private perChunkOutput;
|
---|
14 | private additionalChunkModules;
|
---|
15 | private additionalModules;
|
---|
16 | private skipChildCompilers;
|
---|
17 | static PROCESS_ASSETS_STAGE_ADDITIONS: number;
|
---|
18 | static PROCESS_ASSETS_STAGE_REPORT: number;
|
---|
19 | constructor(chunkIncludeTester: ChunkIncludeExcludeTester, chunkHandler: WebpackChunkHandler, assetManager: AssetManager, moduleCache: ModuleCache, addBanner: boolean, perChunkOutput: boolean, additionalChunkModules: {
|
---|
20 | [chunkName: string]: Module[];
|
---|
21 | }, additionalModules: Module[], skipChildCompilers: boolean);
|
---|
22 | handleCompiler(compiler: WebpackCompiler): void;
|
---|
23 | private iterateChunksForBanner;
|
---|
24 | private iterateChunks;
|
---|
25 | }
|
---|
26 | export { WebpackCompilerHandler };
|
---|
Note:
See
TracBrowser
for help on using the repository browser.