hardhat
Version:
Hardhat is an extensible developer tool that helps smart contract developers increase productivity by reliably bringing together the tools they want.
14 lines • 589 B
TypeScript
import type { GlobalOptions } from "./global-options.js";
import type { UserInterruptionManager } from "./user-interruptions.js";
import type { HardhatConfig, HardhatUserConfig } from "../types/config.js";
/**
* The Hardhat Runtime Environment (HRE) is an object that exposes
* all the functionality available through Hardhat.
*/
export interface HardhatRuntimeEnvironment {
readonly config: HardhatConfig;
readonly userConfig: HardhatUserConfig;
readonly globalOptions: GlobalOptions;
readonly interruptions: UserInterruptionManager;
}
//# sourceMappingURL=hre.d.ts.map