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

    Interface BSBObjectType

    Object type with named properties.

    interface BSBObjectType {
        description?: string;
        optional?: boolean;
        nullable?: boolean;
        _bsb: "object";
        properties: Record<string, BSBType>;
        required: string[];
    }

    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: "object"

    Type discriminator for JSON serialization

    properties: Record<string, BSBType>
    required: string[]