UNPKG

hardhat

Version:

Hardhat is an extensible developer tool that helps smart contract developers increase productivity by reliably bringing together the tools they want.

21 lines 1.1 kB
import type { ArtifactManager } from "./types/artifacts.js"; import type { HardhatConfig } from "./types/config.js"; import type { GlobalOptions } from "./types/global-options.js"; import type { HookManager } from "./types/hooks.js"; import type { HardhatRuntimeEnvironment } from "./types/hre.js"; import type { NetworkManager } from "./types/network.js"; import type { SolidityBuildSystem } from "./types/solidity/build-system.js"; import type { TaskManager } from "./types/tasks.js"; import type { UserInterruptionManager } from "./types/user-interruptions.js"; import "./internal/builtin-plugins/index.js"; declare const hre: HardhatRuntimeEnvironment; export declare const config: HardhatConfig; export declare const tasks: TaskManager; export declare const globalOptions: GlobalOptions; export declare const hooks: HookManager; export declare const interruptions: UserInterruptionManager; export declare const network: NetworkManager; export declare const artifacts: ArtifactManager; export declare const solidity: SolidityBuildSystem; export default hre; //# sourceMappingURL=index.d.ts.map