UNPKG

@solidstate/hardhat-license-identifier

Version:
12 lines (11 loc) 368 B
import type { FilterOptions } from '@solidstate/hardhat-solidstate-utils/types'; export type LicenseIdentifierConfig = { license?: string; overwrite: boolean; runOnCompile: boolean; } & FilterOptions; export type LicenseIdentifierUserConfig = Partial<LicenseIdentifierConfig>; export type SourceLicense = { sourcePath: string; license?: string; };