import { type SVGElement } from "https://deno.land/x/evt@v2.5.3/lib/types/lib.dom.ts";
All of the SVG DOM interfaces that correspond directly to elements in the SVG language derive from the SVGElement interface.
Properties
readonly
ownerSVGElement: SVGSVGElement | nullreadonly
viewportElement: SVGElement | nullMethods
addEventListener<K extends keyof SVGElementEventMap>(): void
type: K,
listener: (this: SVGElement, ev: SVGElementEventMap[K]) => any,
options?: boolean | AddEventListenerOptions,
addEventListener(): void
type: string,
listener: EventListenerOrEventListenerObject,
options?: boolean | AddEventListenerOptions,
removeEventListener<K extends keyof SVGElementEventMap>(): void
type: K,
listener: (this: SVGElement, ev: SVGElementEventMap[K]) => any,
options?: boolean | EventListenerOptions,