The assertion parts tuple defining the expected structure
If success is true, then this will be true if all args matched the
slots and none of those args infer as unknown or any.
Present only if success is true. The parsed values mapped to the slots
of an Assertion.
OptionalsubjectOptional cached subject validation result for optimized schema assertions. When present, indicates that subject validation was already performed during parseValues() and doesn't need to be repeated in execute().
Supports both Zod errors and Standard Schema issues.
Whether the args were successfully parsed against the slots of an Assertion.
Interface representing a successful argument parsing attempt.
When assertion arguments successfully match the expected slots, this interface contains the validated arguments and metadata about the match quality. The assertion can be executed using the
parsedValues.See