blob: d05c00361fba6272d50ab70de87525ad088a16c6 [file] [log] [blame]
Adrià Vilanova Martínezb6e55682025-04-05 14:25:27 +02001/** Status of a specific type of report. */
2export const ReportStatusValues = {
3 /**
4 * This report hasn't yet been initiated or it has completed with an error and
5 * is ready to be retried.
6 */
7 Idle: 'idle',
8 /* The user initiated the report and the request hasn't completed. */
9 Processing: 'processing',
10 /* The reporting request has completed successfully. */
11 Done: 'done',
12} as const;
13
14export type ReportStatus =
15 (typeof ReportStatusValues)[keyof typeof ReportStatusValues];