blob: d05c00361fba6272d50ab70de87525ad088a16c6 [file] [log] [blame]
/** Status of a specific type of report. */
export const ReportStatusValues = {
/**
* This report hasn't yet been initiated or it has completed with an error and
* is ready to be retried.
*/
Idle: 'idle',
/* The user initiated the report and the request hasn't completed. */
Processing: 'processing',
/* The reporting request has completed successfully. */
Done: 'done',
} as const;
export type ReportStatus =
(typeof ReportStatusValues)[keyof typeof ReportStatusValues];