Defines the shape of a CSV object by mapping each property key to a transformer function. The transformer function converts a cell string into the appropriate type for that property.
The object type being defined
const shape: CsvObjectShape<User> = { name: String, age: Number, active: Boolean} Copy
const shape: CsvObjectShape<User> = { name: String, age: Number, active: Boolean}
Defines the shape of a CSV object by mapping each property key to a transformer function. The transformer function converts a cell string into the appropriate type for that property.