Skip to content

Commit

Permalink
Merge pull request #79 from cjxe/fix/ented-IContent-type
Browse files Browse the repository at this point in the history
fix: append `null` type under `IContent`
  • Loading branch information
LuisEnMarroquin authored Aug 18, 2023
2 parents 1dac19b + af14422 commit daeee56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/main-library/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export interface IColumn {
}

export interface IContent {
[key: string]: string | number | boolean | Date | IContent
[key: string]: string | number | boolean | Date | IContent | null
}

export interface IJsonSheet {
Expand Down

0 comments on commit daeee56

Please sign in to comment.