Skip to content

Commit

Permalink
Update index.d.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
Siemienik authored Feb 18, 2019
1 parent 0d54b94 commit c8c8ad4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -333,13 +333,14 @@ export interface CellHyperlinkValue {

export interface CellFormulaValue {
formula: string;
result?: number | string | Date;
result?: number | string | Date | { error: CellErrorValue };
date1904: boolean;
}

export interface CellSharedFormulaValue {
sharedFormula: string;
readonly formula?: string;
result: number | string | Date | { error: string };
result?: number | string | Date| { error: CellErrorValue };
date1904: boolean;
}

Expand Down

0 comments on commit c8c8ad4

Please sign in to comment.