zeed
    Preparing search index...

    Interface SerializedType

    Plain JSON representation of a schema type

    interface SerializedType {
        args?: SerializedType[];
        default?: any;
        enumValues?: any[];
        info?: SerializedType;
        itemType?: SerializedType;
        literalValue?: any;
        meta?: TypeMeta;
        object?: Record<string, SerializedType>;
        optional?: boolean;
        ret?: SerializedType;
        tupleTypes?: SerializedType[];
        type: string;
        union?: SerializedType[];
    }
    Index

    Properties

    default?: any
    enumValues?: any[]
    itemType?: SerializedType
    literalValue?: any
    meta?: TypeMeta
    object?: Record<string, SerializedType>
    optional?: boolean
    tupleTypes?: SerializedType[]
    type: string
    union?: SerializedType[]