Skip to content

Commit ca671ca

Browse files
committed
update types
1 parent e3f3579 commit ca671ca

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/danfojs-base/shared/types.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -411,9 +411,9 @@ export type JsonInputOptionsNode = {
411411
}
412412

413413
export type CsvOutputOptionsBrowser = { fileName?: string, sep?: string, header?: boolean, download?: boolean };
414-
export type ExcelOutputOptionsBrowser = { fileName?: string, sheetName?: string, writingOptions: WritingOptions };
414+
export type ExcelOutputOptionsBrowser = { fileName?: string, sheetName?: string, writingOptions?: WritingOptions };
415415
export type JsonOutputOptionsBrowser = { fileName?: string, format?: "row" | "column", download?: boolean };
416416

417417
export type CsvOutputOptionsNode = { filePath?: string, sep?: string, header?: boolean }
418418
export type JsonOutputOptionsNode = { format?: "row" | "column", filePath?: string }
419-
export type ExcelOutputOptionsNode = { filePath?: string, sheetName?: string, writingOptions: WritingOptions }
419+
export type ExcelOutputOptionsNode = { filePath?: string, sheetName?: string, writingOptions?: WritingOptions }

0 commit comments

Comments
 (0)