(value: any)
| 34 | [BINARY] = true; |
| 35 | constructor(public readonly data: Buffer, public filename: string) { } |
| 36 | static check(value: any): value is BinaryResponse { |
| 37 | return value && typeof value === 'object' && BINARY in value && value[BINARY] === true; |
| 38 | } |
| 39 | } |
| 40 | |
| 41 | export class RedirectResponse { |