UNPKG

2.44 kBTypeScriptView Raw
1export declare const VERSION = "4.2.8";
2export { Chart, View, Event } from './chart';
3export { Controller as ComponentController } from './chart/controller/base';
4export { default as TooltipController } from './chart/controller/tooltip';
5export { default as Geometry } from './geometry/base';
6export { default as Element } from './geometry/element';
7export { default as GeometryLabel } from './geometry/label/base';
8export { Interaction, Action } from './interaction';
9export { Facet } from './facet';
10export { default as InteractionAction } from './interaction/action/base';
11export { registerComponentController } from './chart';
12export { registerGeometry } from './chart';
13export { registerShape, registerShapeFactory, getShapeFactory } from './geometry/shape/base';
14export { registerGeometryLabel, registerGeometryLabelLayout, getGeometryLabel, getGeometryLabelLayout, } from './geometry/label';
15export { getInteraction, registerInteraction, registerAction, getActionClass } from './interaction';
16export { getFacet, registerFacet } from './facet';
17export { getTheme, registerTheme } from './theme';
18export { registerEngine, getEngine } from './engine';
19export { registerAnimation, getAnimation } from './animate/animation';
20export { LAYER, DIRECTION } from './constant';
21import * as Types from './interface';
22export type { Types };
23export { IGroup, ShapeAttrs, Coordinate, Scale, ScaleConfig } from './dependents';
24import { getMappingValue } from './util/attr';
25import { getLegendItems } from './util/legend';
26import { getAngle, getSectorPath, polarToCartesian } from './util/graphics';
27import { rotate, translate, zoom } from './util/transform';
28import { getTooltipItems } from './util/tooltip';
29import { getDelegationObject } from './interaction/action/util';
30import { getPathPoints } from './geometry/shape/util/get-path-points';
31import { getPath } from './geometry/shape/line';
32export declare const Util: {
33 getLegendItems: typeof getLegendItems;
34 translate: typeof translate;
35 rotate: typeof rotate;
36 zoom: typeof zoom;
37 transform: (m: number[], actions: any[][]) => number[];
38 getAngle: typeof getAngle;
39 getSectorPath: typeof getSectorPath;
40 polarToCartesian: typeof polarToCartesian;
41 getDelegationObject: typeof getDelegationObject;
42 getTooltipItems: typeof getTooltipItems;
43 getMappingValue: typeof getMappingValue;
44 getPath: typeof getPath;
45 getPathPoints: typeof getPathPoints;
46};