node-validator
    Preparing search index...

    Type Alias InferTupleShape<T>

    InferTupleShape: {
        -readonly [K in keyof T]: T[K] extends Validator<infer U> ? U : never
    }

    Infers the validated output from a tuple schema.

    Type Parameters