You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- /**
- * 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;
- }
|