read-excel-file 5.4.6 → 5.4.7

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types.d.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "read-excel-file",
3
- "version": "5.4.6",
3
+ "version": "5.4.7",
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",
package/types.d.ts CHANGED
@@ -11,7 +11,7 @@ type BasicType =
11
11
  | typeof URL
12
12
  | typeof Email;
13
13
 
14
- export type Type = <T>(value: Cell) => T | undefined;
14
+ export type Type<T> = (value: Cell) => T | undefined;
15
15
 
16
16
  interface SchemaEntryBasic<T> {
17
17
  prop: string;