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 309 B
import type { NewUtilsTaskActionFunction } from "../../types.js"; interface PadActionArguments { value: string; length: number; left: boolean; right: boolean; } declare const padAction: NewUtilsTaskActionFunction<PadActionArguments>; export default padAction; //# sourceMappingURL=pad.d.ts.map