TypeAlias.ImportMapperSourceStructure
type ImportMapperSourceStructure =
| {
columns: string[];
format: "csv";
}
| {
format: "json";
paths: string[];
};
type ImportMapperSourceStructure =
| {
columns: string[];
format: "csv";
}
| {
format: "json";
paths: string[];
};