版博士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.

SVGGraphicsElement.d.ts 705 B

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