import 'hardhat/types/config'; import 'hardhat/types/runtime'; import type { GraphRuntimeEnvironment, GraphRuntimeEnvironmentOptions } from './types'; declare module 'hardhat/types/runtime' { interface HardhatRuntimeEnvironment { graph: (opts?: GraphRuntimeEnvironmentOptions) => GraphRuntimeEnvironment; } } declare module 'hardhat/types/config' { interface HardhatConfig { graph: Omit; } interface HardhatUserConfig { graph: Omit; } interface HardhatNetworkConfig { graphConfig?: string; addressBook?: string; } interface HardhatNetworkUserConfig { graphConfig?: string; addressBook?: string; } interface HttpNetworkConfig { graphConfig?: string; addressBook?: string; } interface HttpNetworkUserConfig { graphConfig?: string; addressBook?: string; } interface ProjectPathsConfig { graph?: string; } interface ProjectPathsUserConfig { graph?: string; } } //# sourceMappingURL=type-extensions.d.ts.map