UNPKG

license-webpack-plugin

Version:

Outputs licenses from 3rd party libraries to a file

8 lines (7 loc) 354 B
interface LicensePolicy { isLicenseWrittenFor(licenseType: string | null): boolean; isLicenseUnacceptableFor(licenseType: string | null): boolean; handleUnacceptableLicense(packageName: string, licenseType: string | null): void; handleMissingLicenseText(packageName: string, licenseType: string | null): void; } export { LicensePolicy };