1 | import type { ethers } from "ethers";
|
2 | import type { FactoryOptions as FactoryOptionsT, getContractFactory as getContractFactoryT, HardhatEthersHelpers, Libraries as LibrariesT } from "../types";
|
3 | import "hardhat/types/runtime";
|
4 | declare module "hardhat/types/runtime" {
|
5 | interface HardhatRuntimeEnvironment {
|
6 | ethers: typeof ethers & HardhatEthersHelpers;
|
7 | }
|
8 | type Libraries = LibrariesT;
|
9 | type FactoryOptions = FactoryOptionsT;
|
10 | type getContractFactory = typeof getContractFactoryT;
|
11 | }
|
12 |
|
\ | No newline at end of file |