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

    Type Alias EventInputType<T>

    EventInputType: T extends { input: infer Schema extends BSBType }
        ? InferBSBType<Schema>
        : never

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

    Type Parameters

    • T