(error: unknown)
| 39 | } |
| 40 | |
| 41 | export function isMultipartError(error: unknown): error is MultipartError { |
| 42 | return error instanceof MultipartError |
| 43 | } |
| 44 | |
| 45 | export interface MultipartFilePart { |
| 46 | /** The multipart field name that carried the file (expected: `file`). */ |
no outgoing calls