a9788b586f16539a2382702c9b9ca0cacb182c0ef30acd3aa3baadbe7fe40e02df86ed3352af59880f5020c993e8efafb0f1c3b3764d0a16bf94df70fbb80f 640 B

12345678910
  1. import Path from '../graphic/Path';
  2. import ZRImage from '../graphic/Image';
  3. import TSpan from '../graphic/TSpan';
  4. import { SVGVNodeAttrs, SVGVNode, BrushScope } from './core';
  5. import Displayable from '../graphic/Displayable';
  6. export declare function brushSVGPath(el: Path, scope: BrushScope): SVGVNode;
  7. export declare function brushSVGImage(el: ZRImage, scope: BrushScope): SVGVNode;
  8. export declare function brushSVGTSpan(el: TSpan, scope: BrushScope): SVGVNode;
  9. export declare function brush(el: Displayable, scope: BrushScope): SVGVNode;
  10. export declare function setClipPath(clipPath: Path, attrs: SVGVNodeAttrs, scope: BrushScope): void;