UNPKG

@tsed/platform-koa

Version:
27 lines (26 loc) 459 B
import { UseParam } from "@tsed/platform-params"; /** * Return the original Koa context. * @decorator * @operation * @input * @koa */ export function KoaCtx() { return UseParam({ paramType: "KOA_CTX", dataPath: "$ctx.request.ctx", useMapper: false, useValidation: false }); } /** * Return the original Koa context. * @decorator * @operation * @input * @koa */ export function Ctx() { return KoaCtx(); }