UNPKG

@antv/attr

Version:

The Attribute module for G2, F2.

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