Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

SVGAngle

Used to represent a value that can be an or value. An SVGAngle reflected through the animVal attribute is always read only.

interface SVGAngle {
readonly SVG_ANGLETYPE_DEG: number;
readonly SVG_ANGLETYPE_GRAD: number;
readonly SVG_ANGLETYPE_RAD: number;
readonly SVG_ANGLETYPE_UNKNOWN: number;
readonly SVG_ANGLETYPE_UNSPECIFIED: number;
readonly unitType: number;
value: number;
valueAsString: string;
valueInSpecifiedUnits: number;
convertToSpecifiedUnits(unitType: number): void;
newValueSpecifiedUnits(unitType: number, valueInSpecifiedUnits: number): void;
}
var SVGAngle: {
prototype: SVGAngle;
readonly SVG_ANGLETYPE_DEG: number;
readonly SVG_ANGLETYPE_GRAD: number;
readonly SVG_ANGLETYPE_RAD: number;
readonly SVG_ANGLETYPE_UNKNOWN: number;
readonly SVG_ANGLETYPE_UNSPECIFIED: number;
new (): SVGAngle;
}
;

§Properties

§
readonly SVG_ANGLETYPE_DEG: number
[src]
§
readonly SVG_ANGLETYPE_GRAD: number
[src]
§
readonly SVG_ANGLETYPE_RAD: number
[src]
§
readonly SVG_ANGLETYPE_UNKNOWN: number
[src]
§
readonly SVG_ANGLETYPE_UNSPECIFIED: number
[src]
§
readonly unitType: number
[src]
§
value: number
[src]
§
valueAsString: string
[src]
§
valueInSpecifiedUnits: number
[src]

§Methods

§
convertToSpecifiedUnits(unitType: number): void
[src]
§
newValueSpecifiedUnits(unitType: number, valueInSpecifiedUnits: number): void
[src]