BSB Node.js Type Definitions
    Preparing search index...

    Interface BSBNumberType

    Numeric type with optional range constraints.

    interface BSBNumberType {
        description?: string;
        optional?: boolean;
        nullable?: boolean;
        _bsb: "number";
        numberType: "int32" | "int64" | "float" | "double";
        min?: number;
        max?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    description?: string

    Human-readable description for documentation

    optional?: boolean

    Whether this field is optional

    nullable?: boolean

    Whether this field can be null

    _bsb: "number"

    Type discriminator for JSON serialization

    numberType: "int32" | "int64" | "float" | "double"
    min?: number
    max?: number