11 lines
262 B
TypeScript
Executable file
11 lines
262 B
TypeScript
Executable file
export interface WebpackStatsModule {
|
|
modules?: WebpackStatsModule[];
|
|
identifier: string;
|
|
}
|
|
export interface WebpackStatsChunk {
|
|
names: string[];
|
|
modules: WebpackStatsModule[];
|
|
}
|
|
export interface WebpackStats {
|
|
chunks: WebpackStatsChunk[];
|
|
}
|