UNPKG
read-excel-file
Version:
latest (9.0.9)
9.0.9
9.0.8
9.0.7
9.0.6
9.0.5
9.0.4
9.0.3
9.0.2
9.0.1
9.0.0
8.0.3
8.0.2
8.0.1
8.0.0
7.0.3
7.0.2
7.0.1
7.0.0
6.0.3
6.0.2
6.0.1
6.0.0
5.8.8
5.8.7
5.8.6
5.8.5
5.8.4
5.8.3
5.8.2
5.8.1
5.8.0
5.7.1
5.7.0
5.6.1
5.6.0
5.5.3
5.5.2
5.5.1
5.5.0
5.4.7
5.4.6
5.4.5
5.4.4
5.4.3
5.4.2
5.4.1
5.4.0
5.3.5
5.3.4
5.3.3
5.3.2
5.3.1
5.3.0
5.2.29
5.2.28
5.2.27
5.2.26
5.2.25
5.2.24
5.2.23
5.2.22
5.2.21
5.2.20
5.2.19
5.2.18
5.2.17
5.2.16
5.2.15
5.2.14
5.2.13
5.2.12
5.2.11
5.2.10
5.2.9
5.2.8
5.2.7
5.2.6
5.2.5
5.2.4
5.2.2
5.2.1
5.2.0
5.1.0
5.0.0
4.1.0
4.0.8
4.0.7
4.0.6
4.0.5
4.0.4
4.0.3
4.0.2
4.0.1
4.0.0
3.0.3
3.0.2
3.0.1
3.0.0
2.0.10
2.0.9
2.0.7
2.0.6
2.0.5
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
1.3.8
1.3.7
1.3.6
1.3.3
1.3.2
1.3.1
1.3.0
1.2.8
1.2.7
1.2.6
1.2.5
1.2.4
1.2.3
1.2.2
1.2.1
1.2.0
1.1.1
1.1.0
1.0.9
1.0.8
1.0.7
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
0.0.1
Read `.xlsx` files in a web browser or in Node.js
gitlab.com/catamphetamine/read-excel-file
read-excel-file
/
node
/
input.d.ts
5 lines
(4 loc)
•
174 B
TypeScript
View Raw
1
2
3
4
5
import
type
{
Stream
}
from
'stream'
;
import
type
{
Blob
}
from
'buffer'
;
// FYI: `Buffer` is also an `ArrayBuffer`.
export
type
Input
=
string
|
Stream
|
Blob
|
Buffer
;