NET-Web-API-w-Angular/my-app/node_modules/license-webpack-plugin/dist/ChunkGraph.d.ts

7 lines
327 B
TypeScript
Raw Normal View History

2024-02-09 00:38:41 +00:00
import { WebpackChunk } from './WebpackChunk';
import { WebpackChunkModule } from './WebpackChunkModule';
export interface ChunkGraph {
getChunkModulesIterable: (chunk: WebpackChunk) => IterableIterator<WebpackChunkModule>;
getChunkEntryModulesIterable: (chunk: WebpackChunk) => IterableIterator<WebpackChunkModule>;
}