UNPKG

webpack-license-plugin

Version:

Extracts OSS license information of the npm packages in your webpack output

13 lines (11 loc) 306 B
import type IPackageJson from './IPackageJson' import type IPluginOptions from './IPluginOptions' export default interface ILicenseIdentifier { identifyLicense: ( meta: IPackageJson, options: Pick< IPluginOptions, 'licenseOverrides' | 'unacceptableLicenseTest' > ) => string }