| 48 | } |
| 49 | |
| 50 | interface BatchProgress { |
| 51 | total: number; |
| 52 | completed: number; |
| 53 | failed: number; |
| 54 | skipped: number; |
| 55 | tier0Count: number; |
| 56 | tier1Count: number; |
| 57 | totalCostCents: number; |
| 58 | startTime: number; |
| 59 | } |
| 60 | |
| 61 | function getDataSetPriority(dataSet: string | null): number { |
| 62 | if (!dataSet) return DEFAULT_PRIORITY; |
nothing calls this directly
no outgoing calls
no test coverage detected