UNPKG

transaction-retry-tool

Version:
17 lines 473 B
import 'hardhat/types/config'; import 'hardhat/types/runtime'; import { TransactionRetry } from './TransactionRetry'; declare module 'hardhat/types/config' { interface ProjectPathsUserConfig { retry?: string; } interface ProjectPathsConfig { retry: string; } } declare module 'hardhat/types/runtime' { interface HardhatRuntimeEnvironment { transactionRetry: TransactionRetry; } } //# sourceMappingURL=type-extensions.d.ts.map