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

    Interface FireAndForgetEventSchema

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

    interface FireAndForgetEventSchema {
        input: BSBType;
        description?: string;
        __brand: "fire-and-forget";
    }
    Index

    Properties

    input: BSBType

    Schema for event input parameters (as a single object)

    description?: string

    Optional description of what this event does

    __brand: "fire-and-forget"

    Type brand for compile-time category validation