@@ -464,6 +464,14 @@ export interface DOMAttributes<T extends EventTarget> {
464
464
onfullscreenerror ?: EventHandler < Event , T > | undefined | null ;
465
465
onfullscreenerrorcapture ?: EventHandler < Event , T > | undefined | null ;
466
466
467
+ // Dimensions
468
+ readonly 'bind:contentRect' ?: DOMRectReadOnly | undefined | null ;
469
+ readonly 'bind:contentBoxSize' ?: Array < ResizeObserverSize > | undefined | null ;
470
+ readonly 'bind:borderBoxSize' ?: Array < ResizeObserverSize > | undefined | null ;
471
+ readonly 'bind:devicePixelContentBoxSize' ?: Array < ResizeObserverSize > | undefined | null ;
472
+ readonly 'bind:clientWidth' ?: number | undefined | null ;
473
+ readonly 'bind:clientHeight' ?: number | undefined | null ;
474
+
467
475
xmlns ?: string | undefined | null ;
468
476
}
469
477
@@ -839,13 +847,7 @@ export interface HTMLAttributes<T extends EventTarget> extends AriaAttributes, D
839
847
*/
840
848
'bind:innerText' ?: string | undefined | null ;
841
849
842
- readonly 'bind:contentRect' ?: DOMRectReadOnly | undefined | null ;
843
- readonly 'bind:contentBoxSize' ?: Array < ResizeObserverSize > | undefined | null ;
844
- readonly 'bind:borderBoxSize' ?: Array < ResizeObserverSize > | undefined | null ;
845
- readonly 'bind:devicePixelContentBoxSize' ?: Array < ResizeObserverSize > | undefined | null ;
846
850
readonly 'bind:focused' ?: boolean | undefined | null ;
847
- readonly 'bind:clientWidth' ?: number | undefined | null ;
848
- readonly 'bind:clientHeight' ?: number | undefined | null ;
849
851
readonly 'bind:offsetWidth' ?: number | undefined | null ;
850
852
readonly 'bind:offsetHeight' ?: number | undefined | null ;
851
853
0 commit comments