UNPKG

read-excel-file

Version:

Read `.xlsx` files in a web browser or in Node.js

9 lines (7 loc) 251 B
export type CellValue<ParsedNumber = number> = | string | ParsedNumber | boolean | typeof Date export type Row<ParsedNumber = number> = (CellValue<ParsedNumber> | null)[] export type SheetData<ParsedNumber = number> = Row<ParsedNumber>[]