UNPKG

@antv/g2plot

Version:

G2 Plot, a market of plots built with the Grammar of Graphics'

15 lines (14 loc) 264 B
interface NodesCfg { nodes: IVariableNode[]; } interface IVariableNode { name: string; value: any; } export default class VariableNodes { nodes: IVariableNode[]; type: string; constructor(cfg: NodesCfg); normalize(): void; } export {};