| 48 | const DEFAULT_BATCH_SIZE = 1000 |
| 49 | |
| 50 | export interface EventImportStats { |
| 51 | errors: number |
| 52 | inserted: number |
| 53 | processed: number |
| 54 | skipped: number |
| 55 | } |
| 56 | |
| 57 | export interface EventImportLineError { |
| 58 | lineNumber: number |
nothing calls this directly
no outgoing calls
no test coverage detected