From 33b437d7b6bf835b0171a9728bb3a8652348a790 Mon Sep 17 00:00:00 2001 From: Avin <48435155+avin-kavish@users.noreply.github.com> Date: Wed, 13 Sep 2023 10:35:30 +0530 Subject: [PATCH] Add nullables to OptionDataValue --- src/util/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/types.ts b/src/util/types.ts index c15e8c2639..337f6ddc38 100644 --- a/src/util/types.ts +++ b/src/util/types.ts @@ -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;