export interface IWebResponse { setHeader(name: string, value: string): void; setStatus(code: number): void; setContentType(type: string): void; writeable: NodeJS.WritableStream; } //# sourceMappingURL=response.d.ts.map