UNPKG

296 BTypeScriptView Raw
1import { PackageJson } from './PackageJson';
2import { WebpackCompilation } from './WebpackCompilation';
3interface LicenseTypeIdentifier {
4 findLicenseIdentifier(compilation: WebpackCompilation, packageName: string, packageJson: PackageJson): string | null;
5}
6export { LicenseTypeIdentifier };