()
| 25 | } |
| 26 | |
| 27 | export function userCancellationReason(): UserCancellationError { |
| 28 | return new UserCancellationError(); |
| 29 | } |
| 30 | |
| 31 | export function isUserCancellation(value: unknown): value is UserCancellationError { |
| 32 | return value instanceof UserCancellationError; |
no outgoing calls
no test coverage detected