import {Request} from "express"; export interface HttpContext { request: Request, status?: number, redirect?: string; view?: string; static?: string; }