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

7 lines
296 B
TypeScript
Executable file

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