import { type dom } from "https://deno.land/x/evt@v2.4.16/lib/types/index.ts";
const { SVGAElement } = dom;
Provides access to the properties of element, as well as methods to manipulate them.
Properties
readonly
target: SVGAnimatedStringMethods
addEventListener<K extends keyof SVGElementEventMap>(): void
type: K,
listener: (this: SVGAElement, 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: SVGAElement, ev: SVGElementEventMap[K]) => any,
options?: boolean | EventListenerOptions,