UNPKG

@antv/attr

Version:

The Attribute module for G2, F2.

11 lines (10 loc) 297 B
import { Scale } from '@antv/scale'; export { Scale }; export type CallbackType = (...args: any[]) => any[]; export interface AttributeCfg { readonly type?: string; readonly scales: Scale[]; readonly values?: any; readonly callback?: CallbackType; readonly names?: string[]; }