Last change
on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
563 bytes
|
Rev | Line | |
---|
[6a3a178] | 1 | import { WebpackChunk } from './WebpackChunk';
|
---|
| 2 | import { WebpackCompilation } from './WebpackCompilation';
|
---|
| 3 | import { LicenseIdentifiedModule } from './LicenseIdentifiedModule';
|
---|
| 4 | interface AssetManager {
|
---|
| 5 | writeChunkLicenses(modules: LicenseIdentifiedModule[], compilation: WebpackCompilation, chunk: WebpackChunk): void;
|
---|
| 6 | writeChunkBanners(modules: LicenseIdentifiedModule[], compilation: WebpackCompilation, chunk: WebpackChunk): void;
|
---|
| 7 | writeAllLicenses(modules: LicenseIdentifiedModule[], compilation: WebpackCompilation): void;
|
---|
| 8 | }
|
---|
| 9 | export { AssetManager };
|
---|
Note:
See
TracBrowser
for help on using the repository browser.