import 'hardhat/types/config'; import 'hardhat/types/runtime'; import { AwesomeAddressBook } from './AwesomeAddressBook'; import { FunctionList } from './functionList'; declare module 'hardhat/types/config' { interface ProjectPathsUserConfig { cli?: string; } interface ProjectPathsConfig { cli: string; } } declare module 'hardhat/types/runtime' { interface HardhatRuntimeEnvironment { addressBook: AwesomeAddressBook; functionList: FunctionList; } } //# sourceMappingURL=type-extensions.d.ts.map