@types/web 0.0.100 → 0.0.102
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/index.d.ts +9 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -47,4 +47,4 @@ Prior to `@types/web` the web APIs were deployed with a version of TypeScript, a
|
|
|
47
47
|
|
|
48
48
|
## Deploy Metadata
|
|
49
49
|
|
|
50
|
-
You can read what changed in version 0.0.
|
|
50
|
+
You can read what changed in version 0.0.102 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.102.
|
package/index.d.ts
CHANGED
|
@@ -4124,8 +4124,11 @@ interface CSSStyleDeclaration {
|
|
|
4124
4124
|
fontStyle: string;
|
|
4125
4125
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-synthesis) */
|
|
4126
4126
|
fontSynthesis: string;
|
|
4127
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-synthesis-small-caps) */
|
|
4127
4128
|
fontSynthesisSmallCaps: string;
|
|
4129
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-synthesis-style) */
|
|
4128
4130
|
fontSynthesisStyle: string;
|
|
4131
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-synthesis-weight) */
|
|
4129
4132
|
fontSynthesisWeight: string;
|
|
4130
4133
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-variant) */
|
|
4131
4134
|
fontVariant: string;
|
|
@@ -8887,6 +8890,7 @@ interface GlobalEventHandlersEventMap {
|
|
|
8887
8890
|
"reset": Event;
|
|
8888
8891
|
"resize": UIEvent;
|
|
8889
8892
|
"scroll": Event;
|
|
8893
|
+
"scrollend": Event;
|
|
8890
8894
|
"securitypolicyviolation": SecurityPolicyViolationEvent;
|
|
8891
8895
|
"seeked": Event;
|
|
8892
8896
|
"seeking": Event;
|
|
@@ -9237,6 +9241,8 @@ interface GlobalEventHandlers {
|
|
|
9237
9241
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/scroll_event)
|
|
9238
9242
|
*/
|
|
9239
9243
|
onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
9244
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/scrollend_event) */
|
|
9245
|
+
onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
9240
9246
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/securitypolicyviolation_event) */
|
|
9241
9247
|
onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
|
|
9242
9248
|
/**
|
|
@@ -10070,7 +10076,7 @@ interface HTMLElement extends Element, ElementCSSInlineStyle, ElementContentEdit
|
|
|
10070
10076
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/showPopover) */
|
|
10071
10077
|
showPopover(): void;
|
|
10072
10078
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/togglePopover) */
|
|
10073
|
-
togglePopover(force?: boolean):
|
|
10079
|
+
togglePopover(force?: boolean): boolean;
|
|
10074
10080
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
10075
10081
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
10076
10082
|
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
@@ -27732,6 +27738,8 @@ declare var onresize: ((this: Window, ev: UIEvent) => any) | null;
|
|
|
27732
27738
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/scroll_event)
|
|
27733
27739
|
*/
|
|
27734
27740
|
declare var onscroll: ((this: Window, ev: Event) => any) | null;
|
|
27741
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/scrollend_event) */
|
|
27742
|
+
declare var onscrollend: ((this: Window, ev: Event) => any) | null;
|
|
27735
27743
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/securitypolicyviolation_event) */
|
|
27736
27744
|
declare var onsecuritypolicyviolation: ((this: Window, ev: SecurityPolicyViolationEvent) => any) | null;
|
|
27737
27745
|
/**
|