Beignet API reference
    Preparing search index...

    Type Alias UseCaseRouteInput<UC>

    UseCaseRouteInput: UC extends {
        run: (
            args: { ctx: infer _Ctx; input: infer Input },
        ) => Promise<infer _Out>;
    }
        ? Input
        : never

    Input type accepted by a bound use case's run(...).

    Type Parameters

    • UC