You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
358 B
9 lines
358 B
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>;
|
|
}
|