Type Utils
    Preparing search index...

    Type Alias TupleSchema

    TupleSchema: CallableFunction & {
        <const T extends TupleSchemaEntry<any>[]>(
            schemas: T,
        ): FluentSchema<TypeGuardTupleUnwrap<T>>;
        <const T extends TupleSchemaEntry<any>[]>(
            ...schemas: T,
        ): FluentSchema<TypeGuardTupleUnwrap<T>>;
    }