UNPKG

xlsx-preview

Version:

Preview the .xlsx in the browser, convert to HTML with styles.

9 lines (7 loc) 197 B
export type XlsxData = Blob | File | ArrayBuffer; export interface XlsxOptions { output?: "string" | "arrayBuffer"; separateSheets?: boolean; minimumRows?: number; minimumCols?: number; }