(error: unknown)
| 76 | } |
| 77 | |
| 78 | export function isConflictError(error: unknown): error is FileSystemError { |
| 79 | return error instanceof FileSystemError && error.conflict; |
| 80 | } |
| 81 | |
| 82 | export function isRateLimitError(error: unknown): error is FileSystemError { |
| 83 | return error instanceof FileSystemError && error.rateLimit; |
no outgoing calls
no test coverage detected