版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

30 lines
625 B

  1. import DOMRect from '../element/DOMRect';
  2. import DOMMatrix from './DOMMatrix';
  3. import ISVGElement from './ISVGElement';
  4. /**
  5. * SVG Graphics Element.
  6. *
  7. * @see https://developer.mozilla.org/en-US/docs/Web/API/SVGGraphicsElement
  8. */
  9. export default interface ISVGGraphicsElement extends ISVGElement {
  10. readonly transform: {};
  11. /**
  12. * Returns DOM rect.
  13. *
  14. * @returns DOM rect.
  15. */
  16. getBBox(): DOMRect;
  17. /**
  18. * Returns CTM.
  19. *
  20. * @returns CTM.
  21. */
  22. getCTM(): DOMMatrix;
  23. /**
  24. * Returns screen CTM.
  25. *
  26. * @returns Screen CTM.
  27. */
  28. getScreenCTM(): DOMMatrix;
  29. }