happy-dom
Version:
Happy DOM is a JavaScript implementation of a web browser without its graphical user interface. It includes many web standards from WHATWG DOM and HTML.
30 lines • 677 B
TypeScript
import SVGElement from './SVGElement.cjs';
import DOMRect from '../element/DOMRect.cjs';
import DOMMatrix from './DOMMatrix.cjs';
/**
* SVG Graphics Element.
*
* @see https://developer.mozilla.org/en-US/docs/Web/API/SVGGraphicsElement
*/
export default class SVGGraphicsElement extends SVGElement {
readonly transform: {};
/**
* Returns DOM rect.
*
* @returns DOM rect.
*/
getBBox(): DOMRect;
/**
* Returns CTM.
*
* @returns CTM.
*/
getCTM(): DOMMatrix;
/**
* Returns screen CTM.
*
* @returns Screen CTM.
*/
getScreenCTM(): DOMMatrix;
}
//# sourceMappingURL=SVGGraphicsElement.d.ts.map