25 lines
1.9 KiB
TypeScript
25 lines
1.9 KiB
TypeScript
export { ICanvas, IElement, IGroup, IShape } from '@antv/g-base/lib/interfaces';
|
|
export { PathCommand, BBox, Point, ShapeAttrs } from '@antv/g-base/lib/types';
|
|
export { Event, AbstractGroup, AbstractShape } from '@antv/g-base';
|
|
export declare type IG = any;
|
|
export { registerAdjust, getAdjust, Adjust } from '@antv/adjust/lib/factory';
|
|
export { getAttribute, Attribute } from '@antv/attr/lib/factory';
|
|
export { Color } from '@antv/attr';
|
|
export { getCoordinate, registerCoordinate, Coordinate, CoordinateCfg } from '@antv/coord';
|
|
export { getScale, registerScale, Scale, ScaleConfig } from '@antv/scale';
|
|
export { Tick } from '@antv/scale/lib/types';
|
|
import { Annotation, Axis, Component, Crosshair, Grid, GroupComponent, HtmlComponent, Legend, Slider, Tooltip } from '@antv/component';
|
|
export { IComponent, IList } from '@antv/component/lib/interfaces';
|
|
export { CategoryLegendCfg, CircleAxisCfg, LineAxisCfg, GroupComponentCfg, ListItem, AxisLineCfg, AxisTickLineCfg, AxisSubTickLineCfg, AxisTitleCfg, AxisLabelCfg, GridLineCfg, LegendMarkerCfg, LegendTitleCfg, LegendBackgroundCfg, LegendItemNameCfg, LegendItemValueCfg, ContinueLegendCfg, ContinueLegendTrackCfg, ContinueLegendRailCfg, ContinueLegendLabelCfg, ContinueLegendHandlerCfg, CrosshairLineCfg, CrosshairTextCfg, CrosshairTextBackgroundCfg, SliderCfg, TrendCfg, } from '@antv/component/lib/types';
|
|
export { HtmlComponent, GroupComponent, Component, Crosshair };
|
|
export { Annotation };
|
|
declare const LineAxis: typeof Axis.Line, CircleAxis: typeof Axis.Circle;
|
|
export { LineAxis, CircleAxis };
|
|
declare const LineGrid: typeof Grid.Line, CircleGrid: typeof Grid.Circle;
|
|
export { LineGrid, CircleGrid };
|
|
declare const CategoryLegend: typeof Legend.Category, ContinuousLegend: typeof Legend.Continuous;
|
|
export { CategoryLegend, ContinuousLegend };
|
|
declare const HtmlTooltip: typeof Tooltip.Html;
|
|
export { HtmlTooltip };
|
|
export { Slider };
|