UNPKG

371 BTypeScriptView Raw
1import * as webpack from 'webpack';
2export interface Chunk {
3 path: string;
4 integrity?: string;
5}
6export interface Entrypoint {
7 [key: string]: Chunk[];
8}
9export interface Entrypoints {
10 [key: string]: Entrypoint;
11}
12export declare function getChunkDependencies({ entrypoints, outputOptions }: webpack.compilation.Compilation, entryName: string): Entrypoint;