string
Description:Basic text column.
number
Description:Numeric column.
boolean
Description:Boolean column. Additional:
typeArguments?: { trueLabel?: string, falseLabel?: string }
Notes:
Default true and false labels are Yes
and No
.
reference
Description:References data from another sheet. Additional:
typeArguments: { sheetId: string, sheetColumnId: string }
calculated
Description:Computed column value (read-only). Additional:
typeArguments: { getValue: (row: SheetRow) => ImporterOutputFieldType }
enum
Description:Column with predefined values. Additional:
typeArguments: { values: SelectOption<string>[] }
Notes: