happy-dom-without-node
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.
25 lines • 641 B
TypeScript
/**
* SVG angle.
*
* @see https://developer.mozilla.org/en-US/docs/Web/API/SVGAngle
*/
export default class SVGAngle {
static SVG_ANGLETYPE_UNKNOWN: string;
static SVG_ANGLETYPE_UNSPECIFIED: string;
static SVG_ANGLETYPE_DEG: string;
static SVG_ANGLETYPE_RAD: string;
static SVG_ANGLETYPE_GRAD: string;
unitType: string;
value: number;
valueInSpecifiedUnits: number;
valueAsString: string;
/**
* New value specific units.
*/
newValueSpecifiedUnits(): void;
/**
* Convert to specific units.
*/
convertToSpecifiedUnits(): void;
}
//# sourceMappingURL=SVGAngle.d.ts.map