incomplete ParsingOptions/WritingOptions interface in Typescript in index.d.ts #1026
Labels
No Label
DBF
Dates
Defined Names
Features
Formula
HTML
Images
Infrastructure
Integration
International
ODS
Operations
Performance
PivotTables
Pro
Protection
Read Bug
SSF
SYLK
Style
Write Bug
good first issue
No Milestone
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: sheetjs/sheetjs#1026
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
When trying to read an excel xml file generated in ag-grid, I stumbled upon encoding problem.
Then I noticed, that the problem is fixed, when I read workbook with options { type: 'string' } in browser console.
However typescript is not letting me to build such a code, because types description clearly states only following allowed options:
Here is the description for the options:
https://www.npmjs.com/package/xlsx#input-type
The same goes for both WritingOptions options as well as ParsingOptions options
Here's my pull request with the following issue fixed:
Pull request #1027