(error: unknown)
| 80 | } |
| 81 | |
| 82 | export function isRateLimitError(error: unknown): error is FileSystemError { |
| 83 | return error instanceof FileSystemError && error.rateLimit; |
| 84 | } |
| 85 | |
| 86 | export function isAuthError(error: unknown): error is FileSystemError | WarpTokenError { |
| 87 | return error instanceof FileSystemError ? error.auth : isWarpTokenError(error); |
no outgoing calls
no test coverage detected