Openstatus www.openstatus.dev
at main 11 lines 254 B view raw
1export const incidents = [ 2 { 3 id: 1, 4 startedAt: new Date("2025-05-05 12:00:00"), 5 acknowledged: null, 6 resolvedAt: new Date("2025-05-05 14:00:00"), 7 monitor: "OpenStatus API", 8 }, 9]; 10 11export type Incident = (typeof incidents)[number];