Skip to content

Commit

Permalink
Revert "fix: remove null in IColumn"
Browse files Browse the repository at this point in the history
This reverts commit 20efc83.
  • Loading branch information
cjxe committed Aug 19, 2023
1 parent 20efc83 commit 1cae3cd
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 @@ -2,7 +2,7 @@ import { utils, WorkBook, WorkSheet, write, writeFile, WritingOptions } from "xl

export interface IColumn {
label: string
value: string | ((value: IContent) => string | number | boolean | Date | IContent)
value: string | ((value: IContent) => string | number | boolean | Date | IContent | null)
format?: string
}

Expand Down

0 comments on commit 1cae3cd

Please sign in to comment.