import { Request, Response } from "express"; export interface IPRequest extends Request { token: any; jwt: any; params: any; headers: any; body: any; } export interface IPResponse extends Response { status: any; sendStatus: any; sendFile: any; end: any; type: any; } //# sourceMappingURL=index.d.ts.map