| 5 | export type MappedData = MappedSheetData[]; |
| 6 | |
| 7 | export interface ColumnMapping { |
| 8 | csvColumnName: string; |
| 9 | sheetId: string; |
| 10 | sheetColumnId: string; |
| 11 | } |
| 12 | |
| 13 | export type OnDataColumnsMappedCallback = ( |
| 14 | data: MappedData |
nothing calls this directly
no outgoing calls
no test coverage detected