BasicType is not correct
interface SchemaParseCellValueErrorGeneralProperties<CustomType = never> {
row: number;
column: string;
type?: BasicType | CustomType;
}
Typescript is throwing an error on BasicType
Should maybe be BaseType?
type BaseType =
| string
| number
| boolean
| typeof Date;