import { type dom } from "https://deno.land/x/evt@v2.4.16/lib/types/index.ts";
const { SVGGraphicsElement } = dom;
SVG elements whose primary purpose is to directly render graphics into a group.
Methods
addEventListener<K extends keyof SVGElementEventMap>(): void
type: K,
listener: (this: SVGGraphicsElement, 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: SVGGraphicsElement, ev: SVGElementEventMap[K]) => any,
options?: boolean | EventListenerOptions,