UNPKG

hardhat

Version:

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

10 lines 353 B
import type { NewTaskActionFunction } from "../../../../types/tasks.js"; interface CompileActionArguments { force: boolean; files: string[]; quiet: boolean; defaultBuildProfile: string | undefined; } declare const buildAction: NewTaskActionFunction<CompileActionArguments>; export default buildAction; //# sourceMappingURL=build.d.ts.map