/** * Boundary-values axis. * * For each declared arg, generate edge values that often expose * uninitialised handling: empty string, max-length string, 0, -1, * Number.MAX_SAFE_INTEGER + 1, NaN, null, undefined-as-omitted. * * Per docs/SPEC.md ยง"Fuzzing strategy". */ import type { Prng } from "../prng.js"; import type { ToolFacts } from "../schema.js"; /** Generate boundary inputs for one tool. */ export declare function generateBoundary(facts: ToolFacts, _prng: Prng): Generator<{ args: Record; rationale: string; }>; //# sourceMappingURL=boundary.d.ts.map