| 1 | import { ImporterOutputFieldType, SheetRow } from '../types'; |
| 2 | |
| 3 | export interface ImporterValidationError { |
| 4 | sheetId: string; |
| 5 | rowIndex: number; |
| 6 | columnId: string; |
| 7 | message: string; |
| 8 | } |
| 9 | |
| 10 | type ImporterValidatorBaseOutput = string | null | undefined; |
| 11 | export type ImporterValidatorOutput = |
nothing calls this directly
no outgoing calls
no test coverage detected