From 9bd867958dd457b26cb697cf6b4d101944443755 Mon Sep 17 00:00:00 2001 From: Dan Onoshko Date: Sat, 13 Aug 2022 18:55:50 +0400 Subject: [PATCH] fix: add Date type to members of Multi type (#1348) --- src/core/types.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/core/types.ts b/src/core/types.ts index 8f7639ab..2d327dd8 100644 --- a/src/core/types.ts +++ b/src/core/types.ts @@ -111,14 +111,14 @@ export type AxisName = 'x' | 'y'; export type Multi = | { - x: number | string | null; - y: number | string | null; + x: number | string | Date | null; + y: number | string | Date | null; } | { - x: number | string | null; + x: number | string | Date | null; } | { - y: number | string | null; + y: number | string | Date | null; }; export type NormalizedMulti =