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

    Interface BSBArrayType

    Array type with element type and optional size constraints.

    interface BSBArrayType {
        description?: string;
        optional?: boolean;
        nullable?: boolean;
        _bsb: "array";
        items: BSBType;
        minItems?: number;
        maxItems?: 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: "array"

    Type discriminator for JSON serialization

    items: BSBType
    minItems?: number
    maxItems?: number