@traversable/schema
    Preparing search index...
    type Catalog<S = unknown> = {
        any: V.Any;
        array: V.Array<S>;
        bigint: V.BigInt;
        blob: V.Blob;
        boolean: V.Boolean;
        custom: V.Custom;
        date: V.Date;
        enum: V.Enum;
        exact_optional: ExactOptional<S>;
        file: V.File;
        function: Function;
        instance: Instance;
        intersect: V.Intersect<S>;
        lazy: V.Lazy<S>;
        literal: V.Literal<S>;
        loose_object: V.LooseObject<S>;
        loose_tuple: V.LooseTuple<S>;
        map: V.Map<S>;
        nan: V.NaN;
        never: V.Never;
        non_nullable: V.NonNullable<S>;
        non_nullish: V.NonNullish<S>;
        non_optional: V.NonOptional<S>;
        null: V.Null;
        nullable: V.Nullable<S>;
        nullish: V.Nullish<S>;
        number: V.Number;
        object: V.Object<S>;
        object_with_rest: V.ObjectWithRest<S>;
        optional: V.Optional<S>;
        picklist: PickList;
        promise: V.Promise;
        record: V.Record<S>;
        set: V.Set<S>;
        strict_object: V.StrictObject<S>;
        strict_tuple: V.StrictTuple<S>;
        string: V.String;
        symbol: V.Symbol;
        tuple: V.Tuple<S>;
        tuple_with_rest: V.TupleWithRest<S>;
        undefined: V.Undefined;
        undefinedable: V.Undefinedable<S>;
        union: V.Union<S>;
        unknown: V.Unknown;
        variant: V.Variant<S>;
        void: V.Void;
    }

    Type Parameters

    • S = unknown
    Index

    Properties

    any: V.Any
    array: V.Array<S>
    bigint: V.BigInt
    blob: V.Blob
    boolean: V.Boolean
    custom: V.Custom
    date: V.Date
    enum: V.Enum
    exact_optional: ExactOptional<S>
    file: V.File
    function: Function
    instance: Instance
    intersect: V.Intersect<S>
    lazy: V.Lazy<S>
    literal: V.Literal<S>
    loose_object: V.LooseObject<S>
    loose_tuple: V.LooseTuple<S>
    map: V.Map<S>
    nan: V.NaN
    never: V.Never
    non_nullable: V.NonNullable<S>
    non_nullish: V.NonNullish<S>
    non_optional: V.NonOptional<S>
    null: V.Null
    nullable: V.Nullable<S>
    nullish: V.Nullish<S>
    number: V.Number
    object: V.Object<S>
    object_with_rest: V.ObjectWithRest<S>
    optional: V.Optional<S>
    picklist: PickList
    promise: V.Promise
    record: V.Record<S>
    set: V.Set<S>
    strict_object: V.StrictObject<S>
    strict_tuple: V.StrictTuple<S>
    string: V.String
    symbol: V.Symbol
    tuple: V.Tuple<S>
    tuple_with_rest: V.TupleWithRest<S>
    undefined: V.Undefined
    undefinedable: V.Undefinedable<S>
    union: V.Union<S>
    unknown: V.Unknown
    variant: V.Variant<S>
    void: V.Void