UNPKG

3.38 kBTypeScriptView Raw
1import * as zrUtil from './core/util';
2import * as matrix from './core/matrix';
3import * as vector from './core/vector';
4import * as colorTool from './tool/color';
5import * as pathTool from './tool/path';
6import { parseSVG } from './tool/parseSVG';
7import * as morphPathTool from './tool/morphPath';
8export { default as Point, PointLike } from './core/Point';
9export { default as Element, ElementAnimateConfig, ElementTextConfig, ElementTextGuideLineConfig, ElementEvent, ElementEventCallback, ElementProps } from './Element';
10export { default as Displayable, DisplayableProps } from './graphic/Displayable';
11export { default as Group, GroupProps } from './graphic/Group';
12export { default as Path, PathStyleProps, PathProps, PathStatePropNames, PathState } from './graphic/Path';
13export { default as Image, ImageStyleProps, ImageProps, ImageState } from './graphic/Image';
14export { default as CompoundPath, CompoundPathShape } from './graphic/CompoundPath';
15export { default as TSpan, TSpanStyleProps, TSpanProps, TSpanState } from './graphic/TSpan';
16export { default as IncrementalDisplayable } from './graphic/IncrementalDisplayable';
17export { default as Text, TextStylePropsPart, TextStyleProps, TextProps, TextState } from './graphic/Text';
18export { default as Arc, ArcProps, ArcShape } from './graphic/shape/Arc';
19export { default as BezierCurve, BezierCurveProps, BezierCurveShape } from './graphic/shape/BezierCurve';
20export { default as Circle, CircleProps, CircleShape } from './graphic/shape/Circle';
21export { default as Droplet, DropletProps, DropletShape } from './graphic/shape/Droplet';
22export { default as Ellipse, EllipseProps, EllipseShape } from './graphic/shape/Ellipse';
23export { default as Heart, HeartProps, HeartShape } from './graphic/shape/Heart';
24export { default as Isogon, IsogonProps, IsogonShape } from './graphic/shape/Isogon';
25export { default as Line, LineProps, LineShape } from './graphic/shape/Line';
26export { default as Polygon, PolygonProps, PolygonShape } from './graphic/shape/Polygon';
27export { default as Polyline, PolylineProps, PolylineShape } from './graphic/shape/Polyline';
28export { default as Rect, RectProps, RectShape } from './graphic/shape/Rect';
29export { default as Ring, RingProps, RingShape } from './graphic/shape/Ring';
30export { default as Rose, RoseProps, RoseShape } from './graphic/shape/Rose';
31export { default as Sector, SectorProps, SectorShape } from './graphic/shape/Sector';
32export { default as Star, StarProps, StarShape } from './graphic/shape/Star';
33export { default as Trochoid, TrochoidProps, TrochoidShape } from './graphic/shape/Trochoid';
34export { default as LinearGradient, LinearGradientObject } from './graphic/LinearGradient';
35export { default as RadialGradient, RadialGradientObject } from './graphic/RadialGradient';
36export { default as Pattern, PatternObjectBase, PatternObject, ImagePatternObject, SVGPatternObject } from './graphic/Pattern';
37export { default as BoundingRect, RectLike } from './core/BoundingRect';
38export { default as OrientedBoundingRect } from './core/OrientedBoundingRect';
39export { matrix };
40export { vector };
41export { colorTool as color };
42export { pathTool as path };
43export { zrUtil as util };
44export { morphPathTool as morph };
45export { parseSVG };
46export { default as showDebugDirtyRect } from './debug/showDebugDirtyRect';
47export { setPlatformAPI } from './core/platform';