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.
 
 
 
 

14 lines
842 B

import { AssetManager } from './AssetManager';
import { WebpackCompilation } from './WebpackCompilation';
import { WebpackChunk } from './WebpackChunk';
import { LicensesRenderer } from './LicensesRenderer';
import { LicenseIdentifiedModule } from './LicenseIdentifiedModule';
declare class WebpackAssetManager implements AssetManager {
private outputFilename;
private licensesRenderer;
constructor(outputFilename: string, licensesRenderer: LicensesRenderer);
writeChunkLicenses(modules: LicenseIdentifiedModule[], compilation: WebpackCompilation, chunk: WebpackChunk): void;
writeChunkBanners(modules: LicenseIdentifiedModule[], compilation: WebpackCompilation, chunk: WebpackChunk): void;
writeAllLicenses(modules: LicenseIdentifiedModule[], compilation: WebpackCompilation): void;
}
export { WebpackAssetManager };