File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -3496,6 +3496,10 @@ interface ChildNode {
3496
3496
replaceWith(...nodes: (Node | string)[]): void;
3497
3497
}
3498
3498
3499
+ /** @deprecated */
3500
+ interface ClientRect extends DOMRect {
3501
+ }
3502
+
3499
3503
interface Clipboard extends EventTarget {
3500
3504
read(): Promise<ClipboardItems>;
3501
3505
readText(): Promise<string>;
Original file line number Diff line number Diff line change 557
557
}
558
558
}
559
559
},
560
+ // This is used in many DT libraries, via ckeditor
561
+ "ClientRect" : {
562
+ "name" : " ClientRect" ,
563
+ "exposed" : " Window" ,
564
+ "deprecated" : true ,
565
+ "extends" : " DOMRect" ,
566
+ "noInterfaceObject" : true
567
+ },
560
568
/*
561
569
Keeping EventListener and EventListenerObject isn't the most elegant way to handle
562
570
the event listeners, but we need to keep the EventListener as an extendable interface
You can’t perform that action at this time.
0 commit comments