@omnist-dev/omnist
    Preparing search index...

    Interface ScalarType

    One of the seven predefined value kinds, optionally nullable.

    interface ScalarType {
        nullable: boolean;
        scalarKind:
            | "string"
            | "number"
            | "boolean"
            | "date"
            | "datetime"
            | "integer"
            | "time";
        tag: "scalar";
    }
    Index
    nullable: boolean

    Whether this scalar type accepts null values (the ? suffix in OSD).

    scalarKind:
        | "string"
        | "number"
        | "boolean"
        | "date"
        | "datetime"
        | "integer"
        | "time"

    The value kind of this scalar (spec §2.2).

    tag: "scalar"

    Discriminated union tag: 'scalar'.