UNPKG

327 BTypeScriptView Raw
1import { WebpackChunk } from './WebpackChunk';
2import { WebpackChunkModule } from './WebpackChunkModule';
3export interface ChunkGraph {
4 getChunkModulesIterable: (chunk: WebpackChunk) => IterableIterator<WebpackChunkModule>;
5 getChunkEntryModulesIterable: (chunk: WebpackChunk) => IterableIterator<WebpackChunkModule>;
6}