interface dom.SVGSVGElement
implements SVGGraphicsElement, DocumentEvent, SVGFitToViewBox, SVGZoomAndPan
import { type dom } from "https://deno.land/x/evt@v2.4.10/lib/types/index.ts";
const { SVGSVGElement } = dom;
Provides access to the properties of elements, as well as methods to manipulate them. This interface contains also various miscellaneous commonly-used utility methods, such as matrix operations and the ability to control the time of redraw on visual rendering devices.
Properties
onunload: ((this: SVGSVGElement, ev: Event) => any) | null
Methods
addEventListener<K extends keyof SVGSVGElementEventMap>(): void
type: K,
listener: (this: SVGSVGElement, ev: SVGSVGElementEventMap[K]) => any,
options?: boolean | AddEventListenerOptions,
addEventListener(): void
type: string,
listener: EventListenerOrEventListenerObject,
options?: boolean | AddEventListenerOptions,
removeEventListener<K extends keyof SVGSVGElementEventMap>(): void
type: K,
listener: (this: SVGSVGElement, ev: SVGSVGElementEventMap[K]) => any,
options?: boolean | EventListenerOptions,