(req: Request)
| 4 | type Request = Pick<I, 'headers'> |
| 5 | |
| 6 | export const getAccepts = (req: Request) => (...types: string[]) => new Accepts(req).types(types) |
| 7 | |
| 8 | export const getAcceptsEncodings = (req: Request) => (...encodings: string[]) => new Accepts(req).encodings(encodings) |
| 9 |
no test coverage detected