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.
18 lines • 954 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var SVGLengthTypeEnum;
(function (SVGLengthTypeEnum) {
SVGLengthTypeEnum[SVGLengthTypeEnum["unknown"] = 0] = "unknown";
SVGLengthTypeEnum[SVGLengthTypeEnum["number"] = 1] = "number";
SVGLengthTypeEnum[SVGLengthTypeEnum["percentage"] = 2] = "percentage";
SVGLengthTypeEnum[SVGLengthTypeEnum["ems"] = 3] = "ems";
SVGLengthTypeEnum[SVGLengthTypeEnum["exs"] = 4] = "exs";
SVGLengthTypeEnum[SVGLengthTypeEnum["px"] = 5] = "px";
SVGLengthTypeEnum[SVGLengthTypeEnum["cm"] = 6] = "cm";
SVGLengthTypeEnum[SVGLengthTypeEnum["mm"] = 7] = "mm";
SVGLengthTypeEnum[SVGLengthTypeEnum["in"] = 8] = "in";
SVGLengthTypeEnum[SVGLengthTypeEnum["pt"] = 9] = "pt";
SVGLengthTypeEnum[SVGLengthTypeEnum["pc"] = 10] = "pc";
})(SVGLengthTypeEnum || (SVGLengthTypeEnum = {}));
exports.default = SVGLengthTypeEnum;
//# sourceMappingURL=SVGLengthTypeEnum.cjs.map
;