UNPKG

hardhat-deployed-records

Version:
18 lines (17 loc) 472 B
import "hardhat/types/config"; declare module "hardhat/types/config" { interface DeployedRecordsUserConfig { deployedDir?: string; ignoreContracts?: string[]; } interface DeployedRecordsConfig { deployedDir: string; ignoreContracts: string[]; } interface HardhatUserConfig { deployedRecords?: DeployedRecordsUserConfig; } interface HardhatConfig { deployedRecords: DeployedRecordsConfig; } }