Files
Botexercito/Frontend/angular-internal-chat/node_modules/license-webpack-plugin/dist/WebpackChunk.d.ts
T
2026-03-22 18:07:19 +00:00

10 lines
358 B
TypeScript

import { WebpackChunkModule } from './WebpackChunkModule';
export interface WebpackChunk {
name: string;
modulesIterable?: IterableIterator<WebpackChunkModule>;
forEachModule?: (callback: (module: WebpackChunkModule) => void) => void;
modules?: WebpackChunkModule[];
entryModule?: WebpackChunkModule;
files: string[] | Set<string>;
}