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

    Type Alias EventOutputType<T>

    EventOutputType: T extends { output: infer Schema extends BSBType }
        ? InferBSBType<Schema>
        : never

    Extract the output type from an event schema by inferring from BSB type. Uses direct property access to avoid excessive recursion.

    Type Parameters

    • T