Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
catamphetamine committed May 8, 2024
1 parent b2d18cd commit b1e2ce8
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
ParseWithoutSchemaOptions,
ParsedObjectsResult,
Row
} from './types.d';
} from './types.d.js';

export {
Schema,
Expand All @@ -13,7 +13,7 @@ export {
Integer,
Email,
URL
} from './types.d';
} from './types.d.js';

export function parseExcelDate(excelSerialDate: number) : typeof Date;

Expand Down
4 changes: 2 additions & 2 deletions node/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ import {
ParseWithoutSchemaOptions,
ParsedObjectsResult,
Row
} from '../types.d';
} from '../types.d.js';

export {
ParsedObjectsResult,
Row,
Integer,
Email,
URL
} from '../types.d';
} from '../types.d.js';

export function parseExcelDate(excelSerialDate: number) : typeof Date;

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "read-excel-file",
"version": "5.8.0",
"version": "5.8.1",
"description": "Read small to medium `*.xlsx` files in a browser or Node.js. Parse to JSON with a strict schema.",
"module": "index.js",
"main": "index.cjs",
Expand Down
4 changes: 2 additions & 2 deletions web-worker/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ import {
ParseWithoutSchemaOptions,
ParsedObjectsResult,
Row
} from '../types.d';
} from '../types.d.js';

export {
ParsedObjectsResult,
Row,
Integer,
Email,
URL
} from '../types.d';
} from '../types.d.js';

export function parseExcelDate(excelSerialDate: number) : typeof Date;

Expand Down

0 comments on commit b1e2ce8

Please sign in to comment.