UNPKG

read-excel-file

Version:

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

5 lines (4 loc) 174 B
import type { Stream } from 'stream'; import type { Blob } from 'buffer'; // FYI: `Buffer` is also an `ArrayBuffer`. export type Input = string | Stream | Blob | Buffer;