Type Alias HandlerEffect<R>

HandlerEffect: Effect.Effect<
    APIGatewayProxyResult,
    never,
    APIGatewayProxyEvent
    | HandlerContext
    | R,
>

Utility type can be useful when you are composing with applyMiddleware for example.

Type Parameters

  • R = never