UNPKG

@tsed/platform-express

Version:
19 lines (18 loc) 554 B
import { NextFunction as ENext, Request as EReq, Response as ERes } from "express"; import { PlatformExpressSettings } from "./PlatformExpressSettings.js"; declare global { namespace TsED { interface Configuration { /** * Configuration related to Express platform application. */ express: PlatformExpressSettings; } interface NextFunction extends ENext { } interface Response extends ERes { } interface Request extends EReq { } } }