hardhat
Version:
Hardhat is an extensible developer tool that helps smart contract developers increase productivity by reliably bringing together the tools they want.
13 lines • 531 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", strings must be a non-empty
* double-quoted literal)
*
* Throws a HardhatError if any validation fails.
*/
export declare function validateInlineOverrides(overrides: RawInlineOverride[]): void;
//# sourceMappingURL=validation.d.ts.map