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 • 475 B
TypeScript
import type { RawInlineOverride } from "./types.js";
/**
* Validates a list of raw inline overrides, checking for:
* - Valid keys
* - No duplicate keys for the same function
* - Values of the expected type (numbers must be non-negative integers, booleans
* must be "true" or "false")
*
* Throws a HardhatError if any validation fails.
*/
export declare function validateInlineOverrides(overrides: RawInlineOverride[]): void;
//# sourceMappingURL=validation.d.ts.map