Skip to content

Commit

Permalink
Merge pull request #19111 from avin-kavish/patch-1
Browse files Browse the repository at this point in the history
Add nullables to OptionDataValue
  • Loading branch information
Ovilia authored Sep 26, 2023
2 parents 93d542c + 33b437d commit a51f449
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -637,7 +637,7 @@ export interface GraphEdgeItemObject<
*/
target?: string | number
}
export type OptionDataValue = string | number | Date;
export type OptionDataValue = string | number | Date | null | undefined;

export type OptionDataValueNumeric = number | '-';
export type OptionDataValueCategory = string;
Expand Down

0 comments on commit a51f449

Please sign in to comment.