(error: unknown)
| 41 | }); |
| 42 | |
| 43 | function hasStatusCode(error: unknown): error is { statusCode: number } { |
| 44 | return ( |
| 45 | typeof error === "object" && |
| 46 | error !== null && |
| 47 | "statusCode" in error && |
| 48 | typeof error.statusCode === "number" |
| 49 | ); |
| 50 | } |
| 51 | |
| 52 | type CreateCheckoutUrlParams = { |
| 53 | customerExternalId: string; |
no outgoing calls
no test coverage detected