@audiotool/nexus - v0.0.12
    Preparing search index...

    Type Alias NumberPrimitive

    If the primitive field contains a number, this is returned.

    type NumberPrimitive = {
        default: number;
        range: { max: number; min: number };
        scalarType:
            | ScalarType.FIXED32
            | ScalarType.FIXED64
            | ScalarType.FLOAT
            | ScalarType.DOUBLE
            | ScalarType.INT32
            | ScalarType.INT64
            | ScalarType.SFIXED32
            | ScalarType.SFIXED64
            | ScalarType.UINT32
            | ScalarType.UINT64
            | ScalarType.SINT32
            | ScalarType.SINT64;
        type: "number";
    }
    Index

    Properties

    default: number

    Default value for the field as indicated by the protos. Might be removed.

    range: { max: number; min: number }

    The range of values for this field. If protos are unset, is the range of the number type.

    scalarType:
        | ScalarType.FIXED32
        | ScalarType.FIXED64
        | ScalarType.FLOAT
        | ScalarType.DOUBLE
        | ScalarType.INT32
        | ScalarType.INT64
        | ScalarType.SFIXED32
        | ScalarType.SFIXED64
        | ScalarType.UINT32
        | ScalarType.UINT64
        | ScalarType.SINT32
        | ScalarType.SINT64
    type: "number"