Type alias ParameterizedContext<StateT, ContextT, ResponseBodyT>

ParameterizedContext<StateT, ContextT, ResponseBodyT>: KoaApplication.ExtendableContext & {
    state: StateT;
} & ContextT & {
    body: ResponseBodyT;
    response: {
        body: ResponseBodyT;
    };
}

Type Parameters

Type declaration

Type declaration