UNPKG

hardhat

Version:

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

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