export.d.ts 3.3 KB

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