Skip to content

Incorrect type definition - ExcelCell #141

Description

@samuelhulla

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:

interface ExcelCell {
    value: ExcelCell;
    style: ExcelStyle;
}

This obviously makes no sense and would require you to recursively declare the ExcelCell inside the value property.

Supposed to be

interface ExcelCell {
    value: ExcelCellValue;
    style: ExcelStyle;
}

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions