UNPKG

subhasmitalmg-react-spreadsheet-import

Version:

React spreadsheet import for xlsx and csv files with column matching and validation steps

12 lines (11 loc) 227 B
import type { Info } from "../../types"; export type Meta = { __index: string; __errors?: Error | null; }; export type Error = { [key: string]: Info; }; export type Errors = { [id: string]: Error; };