@@ -12950,6 +12950,24 @@ declare var SVGFEDistantLightElement: {
12950
12950
new(): SVGFEDistantLightElement;
12951
12951
};
12952
12952
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
+
12953
12971
/** Corresponds to the <feFlood> element. */
12954
12972
interface SVGFEFloodElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
12955
12973
addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFEFloodElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
0 commit comments