@@ -947,12 +947,12 @@ interface KeySystemTrackConfiguration {
947947}
948948
949949interface KeyboardEventInit extends EventModifierInit {
950- /** @deprecated CharCode is inconsistent across environments, consider using . key instead */
950+ /** @deprecated `charCode` is inconsistent across environments, consider using ` key` instead. */
951951 charCode?: number;
952952 code?: string;
953953 isComposing?: boolean;
954954 key?: string;
955- /** @deprecated KeyCode is inconsistent across environments, consider using . key instead */
955+ /** @deprecated `keyCode` is inconsistent across environments, consider using ` key` instead. */
956956 keyCode?: number;
957957 location?: number;
958958 repeat?: boolean;
@@ -9195,7 +9195,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
91959195 */
91969196 wordSpacing: string;
91979197 /**
9198- * @deprecated The 'wordWrap' property is non-standard and has been replaced by ' overflow-wrap' in modern CSS .
9198+ * @deprecated `word-wrap` is a legacy alias of ` overflow-wrap` .
91999199 *
92009200 * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/overflow-wrap)
92019201 */
@@ -39462,7 +39462,7 @@ interface WindowEventHandlers {
3946239462 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unhandledrejection_event) */
3946339463 onunhandledrejection: ((this: WindowEventHandlers, ev: PromiseRejectionEvent) => any) | null;
3946439464 /**
39465- * @deprecated The unload event is not reliable, consider visibilitychange or pagehide events
39465+ * @deprecated The unload event is not reliable, consider visibilitychange or pagehide events.
3946639466 *
3946739467 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unload_event)
3946839468 */
@@ -41831,7 +41831,7 @@ declare var onstorage: ((this: Window, ev: StorageEvent) => any) | null;
4183141831/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unhandledrejection_event) */
4183241832declare var onunhandledrejection: ((this: Window, ev: PromiseRejectionEvent) => any) | null;
4183341833/**
41834- * @deprecated The unload event is not reliable, consider visibilitychange or pagehide events
41834+ * @deprecated The unload event is not reliable, consider visibilitychange or pagehide events.
4183541835 *
4183641836 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/unload_event)
4183741837 */
0 commit comments