Skip to content

Type Alias: RouteFn()

ts
type RouteFn = (ctx: HttpContext) => Promise<unknown> | unknown;

Route callback function type

Parameters

ParameterType
ctxHttpContext

Returns

Promise<unknown> | unknown