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.

44 lines 893 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * SVG transform. * * @see https://developer.mozilla.org/en-US/docs/Web/API/SVGTransform */ 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() { } } exports.default = SVGTransform; //# sourceMappingURL=SVGTransform.cjs.map