bupkis
    Preparing search index...

    Type Alias AssertionImplFnSync<Parts>

    AssertionImplFnSync: (
        ...values: ParsedValues<Parts>,
    ) => AssertionFailure | boolean | void | z.ZodType<ParsedSubject<Parts>>

    The implementation of an assertion as a sync function.

    A synchronous implementation function that validates assertion arguments and returns validation results. The function receives parsed values from the assertion parts and can return various types indicating validation success or failure.

    Type Parameters

    • Parts extends AssertionParts

      The assertion parts defining the structure

    Type Declaration