MCPcopy
hub / github.com/janhq/jan / StatusData

Interface StatusData

docs/src/components/OpenAIStatusChecker.tsx:4–18  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2import { AlertCircle, CheckCircle, Clock, RefreshCw } from 'lucide-react'
3
4interface StatusData {
5 status:
6 | 'operational'
7 | 'degraded'
8 | 'partial_outage'
9 | 'major_outage'
10 | 'under_maintenance'
11 | 'unknown'
12 lastUpdated: string
13 incidents: Array<{
14 name: string
15 status: string
16 impact: string
17 }>
18}
19
20const StatusIcon = ({ status }: { status: string }) => {
21 switch (status) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected