Skip to content

Commit

Permalink
fix: add Date type to members of Multi type (#1348)
Browse files Browse the repository at this point in the history
  • Loading branch information
dangreen committed Aug 13, 2022
1 parent 7dd3ba2 commit 9bd8679
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/core/types.ts
Expand Up @@ -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 =
Expand Down

0 comments on commit 9bd8679

Please sign in to comment.