UNPKG

license-webpack-plugin

Version:

Outputs licenses from 3rd party libraries to a file

7 lines (6 loc) 296 B
import { PackageJson } from './PackageJson'; import { WebpackCompilation } from './WebpackCompilation'; interface LicenseTypeIdentifier { findLicenseIdentifier(compilation: WebpackCompilation, packageName: string, packageJson: PackageJson): string | null; } export { LicenseTypeIdentifier };