Libraries
    Preparing search index...

    Type Alias TupleSchemaValidationResult<TResult, TElements>

    TupleSchemaValidationResult: ValidationResult<TResult> & {
        getNestedErrors(): TupleElementValidationResults<TElements> & NestedValidationResult<
            any,
            any,
            any,
        >;
    }

    Validation result type returned by TupleSchemaBuilder.validate(). Extends ValidationResult with getNestedErrors for root-level tuple errors and per-position validation results.

    Type Parameters

    • TResult
    • TElements extends readonly SchemaBuilder<any, any, any, any, any>[]

    Type Declaration