import {StatsBucket} from 'sentry/views/monitors/components/overviewTimeline/types'; import {CheckInStatus} from 'sentry/views/monitors/types'; // Orders the status in terms of precedence for showing to the user export const CHECKIN_STATUS_PRECEDENT = [ CheckInStatus.OK, CheckInStatus.MISSED, CheckInStatus.TIMEOUT, CheckInStatus.ERROR, ] satisfies Array;