We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, I actually ran across this randomly while answering a question on stackoverflow, but either way
ExcelCell
(and retro-actively where it's used)
Current definition:
interface ExcelCell { value: ExcelCell; style: ExcelStyle; }
This obviously makes no sense and would require you to recursively declare the ExcelCell inside the value property.
value
Supposed to be
interface ExcelCell { value: ExcelCellValue; style: ExcelStyle; }
The text was updated successfully, but these errors were encountered:
Fix: ExcelCell typing
0104eb4
Fixes securedeveloper#141
Successfully merging a pull request may close this issue.
Hello, I actually ran across this randomly while answering a question on stackoverflow, but either way
The current the typescript definition for
ExcelCell
is incorrect(and retro-actively where it's used)
Current definition:
This obviously makes no sense and would require you to recursively declare the
ExcelCell
inside thevalue
property.Supposed to be
The text was updated successfully, but these errors were encountered: