Adrià Vilanova MartÃnez | b6e5568 | 2025-04-05 14:25:27 +0200 | [diff] [blame^] | 1 | /** Status of a specific type of report. */ |
| 2 | export 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 | |
| 14 | export type ReportStatus = |
| 15 | (typeof ReportStatusValues)[keyof typeof ReportStatusValues]; |