Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cjxe committed Aug 19, 2023
1 parent de80e8c commit 530922d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/main-library/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ export type IWorkbookCallback = (workbook: WorkBook) => void

export { utils, WorkBook, WorkSheet }

export const getContentProperty = (content: IContent | null, property: string): string | number | boolean | Date | IContent => {
const accessContentProperties = (content: IContent | null, properties: string[]): string | number | boolean | Date | IContent => {
export const getContentProperty = (content: IContent | null, property: string): string | number | boolean | Date | IContent | null => {
const accessContentProperties = (content: IContent | null, properties: string[]): string | number | boolean | Date | IContent | null => {
if (!content) {
return ""
}
Expand Down

0 comments on commit 530922d

Please sign in to comment.