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

    Interface BSBTypeBase

    Base interface for all BSB types. These are pure data structures that can be serialized to JSON and shared across different programming languages.

    interface BSBTypeBase {
        _bsb: string;
        description?: string;
        optional?: boolean;
        nullable?: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    _bsb: string

    Type discriminator for JSON serialization

    description?: string

    Human-readable description for documentation

    optional?: boolean

    Whether this field is optional

    nullable?: boolean

    Whether this field can be null