UNPKG

@antv/g2

Version:

the Grammar of Graphics in Javascript

15 lines (14 loc) 658 B
import { ColumnValue, NormalizedEncodeSpec } from './encode'; import { G2Context, G2Mark } from './options'; export type TransformOptions = Record<string, any>; export type TransformProps = Record<string, never>; export type TransformComponent<O extends TransformOptions = TransformOptions> = { (options: O): Transform; props?: TransformProps; }; export type Transform = (I: number[], mark: G2Mark, context: G2Context) => [number[], G2Mark] | Promise<[number[], G2Mark]>; export type TransformSpec = { type?: string | TransformComponent; [key: string]: any; }; export type ColumnOf = (data: any, encode: NormalizedEncodeSpec) => ColumnValue;