@@ -465,6 +465,13 @@ export interface DOMAttributes<T extends EventTarget> {
465
465
onfullscreenerrorcapture ?: EventHandler < Event , T > | undefined | null ;
466
466
467
467
xmlns ?: string | undefined | null ;
468
+
469
+ readonly 'bind:contentRect' ?: DOMRectReadOnly | undefined | null ;
470
+ readonly 'bind:contentBoxSize' ?: Array < ResizeObserverSize > | undefined | null ;
471
+ readonly 'bind:borderBoxSize' ?: Array < ResizeObserverSize > | undefined | null ;
472
+ readonly 'bind:devicePixelContentBoxSize' ?: Array < ResizeObserverSize > | undefined | null ;
473
+ readonly 'bind:clientWidth' ?: number | undefined | null ;
474
+ readonly 'bind:clientHeight' ?: number | undefined | null ;
468
475
}
469
476
470
477
// All the WAI-ARIA 1.1 attributes from https://www.w3.org/TR/wai-aria-1.1/
@@ -839,13 +846,7 @@ export interface HTMLAttributes<T extends EventTarget> extends AriaAttributes, D
839
846
*/
840
847
'bind:innerText' ?: string | undefined | null ;
841
848
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
849
readonly 'bind:focused' ?: boolean | undefined | null ;
847
- readonly 'bind:clientWidth' ?: number | undefined | null ;
848
- readonly 'bind:clientHeight' ?: number | undefined | null ;
849
850
readonly 'bind:offsetWidth' ?: number | undefined | null ;
850
851
readonly 'bind:offsetHeight' ?: number | undefined | null ;
851
852
0 commit comments