UNPKG

@visactor/vchart

Version:

charts lib based @visactor/VGrammar

9 lines (8 loc) 312 B
import type { DataView } from '@visactor/vdataset'; import type { IGrammarItem } from '../interface'; export interface ICompilableData extends IGrammarItem { getDataView: () => DataView; setDataView: (d?: DataView) => void; getLatestData: () => any[]; updateData: (noRender?: boolean) => void; }