@@ -12950,6 +12950,24 @@ declare var SVGFEDistantLightElement: {
1295012950 new(): SVGFEDistantLightElement;
1295112951};
1295212952
12953+ interface SVGFEDropShadowElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
12954+ readonly dx: SVGAnimatedNumber;
12955+ readonly dy: SVGAnimatedNumber;
12956+ readonly in1: SVGAnimatedString;
12957+ readonly stdDeviationX: SVGAnimatedNumber;
12958+ readonly stdDeviationY: SVGAnimatedNumber;
12959+ setStdDeviation(stdDeviationX: number, stdDeviationY: number): void;
12960+ addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEDropShadowElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
12961+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
12962+ removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEDropShadowElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
12963+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
12964+ }
12965+
12966+ declare var SVGFEDropShadowElement: {
12967+ prototype: SVGFEDropShadowElement;
12968+ new(): SVGFEDropShadowElement;
12969+ };
12970+
1295312971/** Corresponds to the <feFlood> element. */
1295412972interface SVGFEFloodElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
1295512973 addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEFloodElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
0 commit comments