UNPKG

alapa

Version:

A cutting-edge web development framework designed to revolutionize the way developers build modern web applications.

8 lines (7 loc) 321 B
import { Request, Response, NextFunction } from "express"; export declare const changeResponses: (req: Request, res: Response, next: NextFunction) => void; declare module "express" { interface Response { render: (view: string, options?: object, callback?: (err: Error, html: string) => void) => void; } }