flatfile-csv-importer
Version:
A simple adapter for elegantly importing CSV files via flatfile.io (Typescript, ES6, Browser)
19 lines (18 loc) • 385 B
TypeScript
export default interface RecordObject {
/**
* Did the user delete this row before submitting
*/
deleted: boolean;
/**
* Did this row pass validation
*/
valid: boolean;
/**
* The original sequence of this row in the uploaded file
*/
sequence: number;
/**
* The fully mapped final data for this row
*/
data: any;
}