UNPKG

hardhat

Version:

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

11 lines (9 loc) 231 B
import "../../../types/hooks.js"; declare module "../../../types/hooks.js" { export interface HardhatHooks { clean: CleanHooks; } export interface CleanHooks { onClean: (context: HookContext) => Promise<void>; } }