1 | import { Scale } from '@antv/scale';
|
2 | export { Scale };
|
3 | export type CallbackType = (...args: any[]) => any[];
|
4 | export interface AttributeCfg {
|
5 | readonly type?: string;
|
6 | readonly scales: Scale[];
|
7 | readonly values?: any;
|
8 | readonly callback?: CallbackType;
|
9 | readonly names?: string[];
|
10 | }
|