|
123456789101112131415161718192021222324252627282930 |
- import SVGElement from './SVGElement';
- import DOMRect from '../element/DOMRect';
- import DOMMatrix from './DOMMatrix';
- import ISVGGraphicsElement from './ISVGGraphicsElement';
- /**
- * SVG Graphics Element.
- *
- * @see https://developer.mozilla.org/en-US/docs/Web/API/SVGGraphicsElement
- */
- export default class SVGGraphicsElement extends SVGElement implements ISVGGraphicsElement {
- readonly transform: {};
- /**
- * Returns DOM rect.
- *
- * @returns DOM rect.
- */
- getBBox(): DOMRect;
- /**
- * Returns CTM.
- *
- * @returns CTM.
- */
- getCTM(): DOMMatrix;
- /**
- * Returns screen CTM.
- *
- * @returns Screen CTM.
- */
- getScreenCTM(): DOMMatrix;
- }
|