fae30f91690cf467809ae15fc0733719ae349512bfa5188fc70663abcc9e1d6086724cdd484a7a35133264c87f53f634f9ba2aa4ce3108e4418f4de353bd42 379 B

123456789101112
  1. import Path from '../graphic/Path';
  2. import ZRImage from '../graphic/Image';
  3. import TSpan from '../graphic/TSpan';
  4. export interface SVGProxy<T> {
  5. brush(el: T): void;
  6. }
  7. declare const svgPath: SVGProxy<Path>;
  8. export { svgPath as path };
  9. declare const svgImage: SVGProxy<ZRImage>;
  10. export { svgImage as image };
  11. declare const svgText: SVGProxy<TSpan>;
  12. export { svgText as text };