@formant/ava
Version:
A framework for automated visual analytics.
15 lines (14 loc) • 347 B
TypeScript
import { G2ChartSpec } from '../advisor/types';
/**
* One row(record) of data in JSON.
*/
export type Datum = Record<string, any>;
/**
* Rows(records) of data.
*/
export type Data = Datum[];
/**
* Specification: declarative schema to describe a visualization.
*/
export type Specification = G2ChartSpec;
export type ChartSpec = G2ChartSpec;