| 5 | import { ConnectionName, IntegrationSlug, Owner, ProviderKey, ToolAddress } from "./ids"; |
| 6 | |
| 7 | export interface UserActionableError { |
| 8 | readonly __executorUserActionable: true; |
| 9 | readonly userMessage: string; |
| 10 | readonly code: string; |
| 11 | } |
| 12 | |
| 13 | export const isUserActionableError = (value: unknown): value is UserActionableError => |
| 14 | typeof value === "object" && |
nothing calls this directly
no outgoing calls
no test coverage detected