(field: string | Record<string, unknown>, val?: string | any[])
| 24 | export interface Response<O = any> extends ServerResponse { |
| 25 | header(field: string | Record<string, unknown>, val?: string | any[]): Response |
| 26 | set(field: string | Record<string, unknown>, val?: string | any[]): Response |
| 27 | get(field: string): string | number | string[] |
| 28 | send(body: unknown): Response |
| 29 | sendFile(path: string, options?: ReadStreamOptions, cb?: (err?: any) => void): Response |
no outgoing calls
no test coverage detected