vega-typings
Version:
Typings for Vega.
51 lines (37 loc) • 1.23 kB
TypeScript
import { Color } from './color.js';
import { StrokeCap } from './config.js';
import {
Align,
AlignValueRef,
AnchorValueRef,
ArrayValueRef,
BooleanValueRef,
ColorValueRef,
FontStyle,
FontStyleValueRef,
FontWeight,
FontWeightValueRef,
NumericValueRef,
Orient,
OrientValueRef,
StringValueRef,
StrokeCapValueRef,
SymbolShape,
SymbolShapeValueRef,
TextBaseline,
TextBaselineValueRef
} from './encode.js';
import { TitleAnchor } from './title.js';
export type NumberValue = number | NumericValueRef;
export type FontWeightValue = FontWeight | FontWeightValueRef;
export type FontStyleValue = FontStyle | FontStyleValueRef;
export type StringValue = string | StringValueRef;
export type ColorValue = null | Color | ColorValueRef;
export type AlignValue = Align | AlignValueRef;
export type StrokeCapValue = StrokeCap | StrokeCapValueRef;
export type TextBaselineValue = TextBaseline | TextBaselineValueRef;
export type SymbolShapeValue = SymbolShape | SymbolShapeValueRef;
export type BooleanValue = boolean | BooleanValueRef;
export type DashArrayValue = number[] | ArrayValueRef;
export type AnchorValue = TitleAnchor | AnchorValueRef;
export type OrientValue = Orient | OrientValueRef;