UNPKG

@visactor/vchart

Version:

charts lib based @visactor/VGrammar

8 lines (7 loc) 220 B
export type Datum = { [key: string]: any; }; export type StringOrNumber = string | number; export type MaybeArray<T> = T | Array<T>; export type Maybe<T> = T | undefined | null; export type Quadrant = 1 | 2 | 3 | 4;