UNPKG

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.

41 lines 798 B
/** * SVG transform. * * @see https://developer.mozilla.org/en-US/docs/Web/API/SVGTransform */ export default class SVGTransform { static SVG_TRANSFORM_UNKNOWN = 0; static SVG_TRANSFORM_MATRIX = 1; static SVG_TRANSFORM_TRANSLATE = 2; static SVG_TRANSFORM_SCALE = 3; static SVG_TRANSFORM_ROTATE = 4; static SVG_TRANSFORM_SKEWX = 5; static SVG_TRANSFORM_SKEWY = 6; type = 0; angle = 0; /** * Set matrix. */ setMatrix() { } /** * Set translate. */ setTranslate() { } /** * Set scale. */ setScale() { } /** * Set rotate. */ setRotate() { } /** * Set skew x. */ setSkewX() { } /** * Set skew y. */ setSkewY() { } } //# sourceMappingURL=SVGTransform.js.map