clip.d.ts 289 B

12345678910111213141516
  1. /**
  2. * @fileoverview clip
  3. * @author dengfuping_develop@163.com
  4. */
  5. declare class Clip {
  6. type: string;
  7. id: string;
  8. el: SVGClipPathElement;
  9. cfg: {
  10. [key: string]: any;
  11. };
  12. constructor(cfg: any);
  13. match(): boolean;
  14. remove(): void;
  15. }
  16. export default Clip;