UNPKG

read-excel-file

Version:

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

10 lines (9 loc) 323 B
import type { Options } from './Options.d.js' import type { Schema } from './parseSheetData/parseSheetDataSchema.d.js' export interface OptionsWithSchema< Object extends object, ColumnTitle extends string = string, ParsedNumber = number > extends Options<ParsedNumber> { schema: Schema<Object, ColumnTitle>; }