@ptkl/sdk - v1.7.1
    Preparing search index...

    Type Alias ComponentFunctionOutput<C, F>

    ComponentFunctionOutput: ComponentFunctions[C][F] extends { output: infer O }
        ? O
        : any

    Inferred output type for a component function.

    Type Parameters

    type TestOutput = ComponentFunctionOutput<"ecommerce::order", "test">
    // → { item_count?: number; total?: number }