projecte_ionic/node_modules/license-webpack-plugin/dist/LicensePolicy.d.ts
2022-02-09 18:30:03 +01:00

8 lines
354 B
TypeScript
Executable file

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 };