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

    Interface BroadcastEventSchema

    Schema definition for broadcast events. Type-branded to ensure broadcast events are only used in appropriate categories. Broadcast events are like fire-and-forget but delivered to ALL listeners. Uses BSBType for cross-language support instead of Zod schemas.

    interface BroadcastEventSchema {
        input: BSBType;
        description?: string;
        __brand: "broadcast";
    }
    Index

    Properties

    input: BSBType

    Schema for event input parameters (as a single object)

    description?: string

    Optional description of what this event does

    __brand: "broadcast"

    Type brand for compile-time category validation