arrow.d.ts 433 B

12345678910111213141516171819
  1. /**
  2. * @fileoverview arrow
  3. * @author dengfuping_develop@163.com
  4. */
  5. declare class Arrow {
  6. id: string;
  7. el: SVGMarkerElement;
  8. child: SVGPathElement | any;
  9. stroke: string;
  10. cfg: {
  11. [key: string]: any;
  12. };
  13. constructor(attrs: any, type: any);
  14. match(): boolean;
  15. _setDefaultPath(type: any, el: any): void;
  16. _setMarker(r: any, el: any): void;
  17. update(fill: any): void;
  18. }
  19. export default Arrow;