Files
notification-elements-demo/node_modules/license-webpack-plugin/dist/WebpackCompilerHandler.d.ts
Giuliano Silvestro 5d0c9ec7eb Initial commit: notification-elements-demo app
Interactive Angular 19 demo for @sda/notification-elements-ui with
6 sections: Bell & Feed, Notification Center, Inbox, Comments &
Threads, Mention Input, and Full-Featured layout. Includes mock
data, dark mode toggle, and real-time event log.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-13 21:49:19 +10:00

27 lines
1.2 KiB
TypeScript

import { WebpackChunkHandler } from './WebpackChunkHandler';
import { WebpackCompiler } from './WebpackCompiler';
import { ChunkIncludeExcludeTester } from './ChunkIncludeExcludeTester';
import { ModuleCache } from './ModuleCache';
import { AssetManager } from './AssetManager';
import { Module } from './Module';
declare class WebpackCompilerHandler {
private chunkIncludeTester;
private chunkHandler;
private assetManager;
private moduleCache;
private addBanner;
private perChunkOutput;
private additionalChunkModules;
private additionalModules;
private skipChildCompilers;
static PROCESS_ASSETS_STAGE_ADDITIONS: number;
static PROCESS_ASSETS_STAGE_REPORT: number;
constructor(chunkIncludeTester: ChunkIncludeExcludeTester, chunkHandler: WebpackChunkHandler, assetManager: AssetManager, moduleCache: ModuleCache, addBanner: boolean, perChunkOutput: boolean, additionalChunkModules: {
[chunkName: string]: Module[];
}, additionalModules: Module[], skipChildCompilers: boolean);
handleCompiler(compiler: WebpackCompiler): void;
private iterateChunksForBanner;
private iterateChunks;
}
export { WebpackCompilerHandler };