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

    Interface BSBUnionType

    Union type representing one of multiple possible types.

    interface BSBUnionType {
        description?: string;
        optional?: boolean;
        nullable?: boolean;
        _bsb: "union";
        types: BSBType[];
    }

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

    Type discriminator for JSON serialization

    types: BSBType[]