| 12 | } from "./ids"; |
| 13 | |
| 14 | export interface UserActionableError { |
| 15 | readonly __executorUserActionable: true; |
| 16 | readonly userMessage: string; |
| 17 | readonly code: string; |
| 18 | } |
| 19 | |
| 20 | export const isUserActionableError = (value: unknown): value is UserActionableError => |
| 21 | typeof value === "object" && |
nothing calls this directly
no outgoing calls
no test coverage detected