| 4 | import { formatDistanceToNow } from "date-fns"; |
| 5 | |
| 6 | interface Integration { |
| 7 | id: string; |
| 8 | name: string; |
| 9 | status: "connected" | "disconnected" | "configured" | "not_configured"; |
| 10 | icon: string; |
| 11 | lastActivity: string | null; |
| 12 | } |
| 13 | |
| 14 | interface IntegrationStatusProps { |
| 15 | integrations: Integration[] | null; |
nothing calls this directly
no outgoing calls
no test coverage detected