import http from 'http'; export interface ExpressNextFunction { (err?: any): void; } export type ExpressRequest = http.IncomingMessage; export type ExpressResponse = http.ServerResponse;