read-excel-file 5.4.0 → 5.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts CHANGED
@@ -8,7 +8,10 @@ import {
8
8
 
9
9
  export {
10
10
  ParsedObjectsResult,
11
- Row
11
+ Row,
12
+ Integer,
13
+ Email,
14
+ URL
12
15
  } from './types.d';
13
16
 
14
17
  export function parseExcelDate(excelSerialDate: number) : typeof Date;
package/node/index.d.ts CHANGED
@@ -14,7 +14,10 @@ import {
14
14
 
15
15
  export {
16
16
  ParsedObjectsResult,
17
- Row
17
+ Row,
18
+ Integer,
19
+ Email,
20
+ URL
18
21
  } from '../types.d';
19
22
 
20
23
  export function parseExcelDate(excelSerialDate: number) : typeof Date;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "read-excel-file",
3
- "version": "5.4.0",
3
+ "version": "5.4.1",
4
4
  "description": "Read small to medium `*.xlsx` files in a browser or Node.js. Parse to JSON with a strict schema.",
5
5
  "module": "index.js",
6
6
  "main": "index.cjs",
@@ -8,7 +8,10 @@ import {
8
8
 
9
9
  export {
10
10
  ParsedObjectsResult,
11
- Row
11
+ Row,
12
+ Integer,
13
+ Email,
14
+ URL
12
15
  } from '../types.d';
13
16
 
14
17
  export function parseExcelDate(excelSerialDate: number) : typeof Date;