fix: move utility types out of .d.ts file to fix exported declaration files (#6315)

This commit is contained in:
David Luzar
2023-03-04 19:21:57 +01:00
committed by GitHub
parent cef6094d4c
commit 8542c95a7a
21 changed files with 68 additions and 49 deletions

View File

@@ -6,6 +6,7 @@ import {
THEME,
VERTICAL_ALIGN,
} from "../constants";
import { MarkNonNullable, ValueOf } from "../utility-types";
export type ChartType = "bar" | "line";
export type FillStyle = "hachure" | "cross-hatch" | "solid";