Skip to content
# Type Alias: FieldMapping

FieldMapping = string | { column: string; type?: FieldType; } | { from: string; type?: FieldType; }

Defined in: packages/core/src/transformers/ModelDrivenJsonMapping.ts:16

Field mapping configuration that can be either a simple column name or enhanced mapping with type control.

Released under the MIT License.