Last change
on this file since 1ad8e64 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
842 bytes
|
Line | |
---|
1 | import { AssetManager } from './AssetManager';
|
---|
2 | import { WebpackCompilation } from './WebpackCompilation';
|
---|
3 | import { WebpackChunk } from './WebpackChunk';
|
---|
4 | import { LicensesRenderer } from './LicensesRenderer';
|
---|
5 | import { LicenseIdentifiedModule } from './LicenseIdentifiedModule';
|
---|
6 | declare class WebpackAssetManager implements AssetManager {
|
---|
7 | private outputFilename;
|
---|
8 | private licensesRenderer;
|
---|
9 | constructor(outputFilename: string, licensesRenderer: LicensesRenderer);
|
---|
10 | writeChunkLicenses(modules: LicenseIdentifiedModule[], compilation: WebpackCompilation, chunk: WebpackChunk): void;
|
---|
11 | writeChunkBanners(modules: LicenseIdentifiedModule[], compilation: WebpackCompilation, chunk: WebpackChunk): void;
|
---|
12 | writeAllLicenses(modules: LicenseIdentifiedModule[], compilation: WebpackCompilation): void;
|
---|
13 | }
|
---|
14 | export { WebpackAssetManager };
|
---|
Note:
See
TracBrowser
for help on using the repository browser.