(tableId: string)
| 63 | } |
| 64 | |
| 65 | function getMetaKey(tableId: string) { |
| 66 | return `${REDIS_PREFIX}${tableId}:meta` |
| 67 | } |
| 68 | |
| 69 | export type TableCellStatus = 'pending' | 'queued' | 'running' | 'completed' | 'cancelled' | 'error' |
| 70 |
no outgoing calls
no test coverage detected