@@ -2667,7 +2667,7 @@ interface CSSStyleDeclaration {
26672667 clipPath: string | null;
26682668 clipRule: string | null;
26692669 color: string | null;
2670- colorInterpolationFilters: string | null ;
2670+ colorInterpolationFilters: string;
26712671 columnCount: string;
26722672 columnFill: string;
26732673 columnGap: string;
@@ -2692,16 +2692,16 @@ interface CSSStyleDeclaration {
26922692 fill: string | null;
26932693 fillOpacity: string | null;
26942694 fillRule: string | null;
2695- filter: string | null ;
2695+ filter: string;
26962696 flex: string | null;
26972697 flexBasis: string | null;
26982698 flexDirection: string | null;
26992699 flexFlow: string | null;
27002700 flexGrow: string | null;
27012701 flexShrink: string | null;
27022702 flexWrap: string | null;
2703- floodColor: string | null ;
2704- floodOpacity: string | null ;
2703+ floodColor: string;
2704+ floodOpacity: string;
27052705 font: string;
27062706 fontFamily: string;
27072707 fontFeatureSettings: string;
@@ -2755,7 +2755,7 @@ interface CSSStyleDeclaration {
27552755 left: string | null;
27562756 readonly length: number;
27572757 letterSpacing: string | null;
2758- lightingColor: string | null ;
2758+ lightingColor: string;
27592759 lineBreak: string | null;
27602760 lineHeight: string | null;
27612761 listStyle: string | null;
@@ -13459,18 +13459,12 @@ declare var SVGFETurbulenceElement: {
1345913459
1346013460/** Provides access to the properties of <filter> elements, as well as methods to manipulate them. */
1346113461interface SVGFilterElement extends SVGElement, SVGURIReference {
13462- /** @deprecated */
13463- readonly filterResX: SVGAnimatedInteger;
13464- /** @deprecated */
13465- readonly filterResY: SVGAnimatedInteger;
1346613462 readonly filterUnits: SVGAnimatedEnumeration;
1346713463 readonly height: SVGAnimatedLength;
1346813464 readonly primitiveUnits: SVGAnimatedEnumeration;
1346913465 readonly width: SVGAnimatedLength;
1347013466 readonly x: SVGAnimatedLength;
1347113467 readonly y: SVGAnimatedLength;
13472- /** @deprecated */
13473- setFilterRes(filterResX: number, filterResY: number): void;
1347413468 addEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFilterElement, ev: SVGElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
1347513469 addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
1347613470 removeEventListener<K extends keyof SVGElementEventMap>(type: K, listener: (this: SVGFilterElement, ev: SVGElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
@@ -18707,10 +18701,10 @@ declare function addEventListener<K extends keyof WindowEventMap>(type: K, liste
1870718701declare function addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
1870818702declare function removeEventListener<K extends keyof WindowEventMap>(type: K, listener: (this: Window, ev: WindowEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
1870918703declare function removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
18710- type BlobPart = BufferSource | Blob | string;
1871118704type HeadersInit = Headers | string[][] | Record<string, string>;
1871218705type BodyInit = Blob | BufferSource | FormData | URLSearchParams | ReadableStream<Uint8Array> | string;
1871318706type RequestInfo = Request | string;
18707+ type BlobPart = BufferSource | Blob | string;
1871418708type DOMHighResTimeStamp = number;
1871518709type RenderingContext = CanvasRenderingContext2D | ImageBitmapRenderingContext | WebGLRenderingContext;
1871618710type HTMLOrSVGImageElement = HTMLImageElement | SVGImageElement;
0 commit comments