@types/web 0.0.136 → 0.0.138
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 +22 -3
- 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.138 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.138.
|
package/index.d.ts
CHANGED
|
@@ -5033,6 +5033,8 @@ interface CSSStyleDeclaration {
|
|
|
5033
5033
|
y: string;
|
|
5034
5034
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/z-index) */
|
|
5035
5035
|
zIndex: string;
|
|
5036
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/zoom) */
|
|
5037
|
+
zoom: string;
|
|
5036
5038
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleDeclaration/getPropertyPriority) */
|
|
5037
5039
|
getPropertyPriority(property: string): string;
|
|
5038
5040
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleDeclaration/getPropertyValue) */
|
|
@@ -10742,6 +10744,7 @@ interface HTMLIFrameElement extends HTMLElement {
|
|
|
10742
10744
|
*/
|
|
10743
10745
|
align: string;
|
|
10744
10746
|
allow: string;
|
|
10747
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/allowFullscreen) */
|
|
10745
10748
|
allowFullscreen: boolean;
|
|
10746
10749
|
/**
|
|
10747
10750
|
* Retrieves the document object of the page or frame.
|
|
@@ -10768,6 +10771,7 @@ interface HTMLIFrameElement extends HTMLElement {
|
|
|
10768
10771
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/height)
|
|
10769
10772
|
*/
|
|
10770
10773
|
height: string;
|
|
10774
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLIFrameElement/loading) */
|
|
10771
10775
|
loading: string;
|
|
10772
10776
|
/**
|
|
10773
10777
|
* Sets or retrieves a URI to a long description of the object.
|
|
@@ -11690,16 +11694,31 @@ declare var HTMLMenuElement: {
|
|
|
11690
11694
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMetaElement)
|
|
11691
11695
|
*/
|
|
11692
11696
|
interface HTMLMetaElement extends HTMLElement {
|
|
11693
|
-
/**
|
|
11697
|
+
/**
|
|
11698
|
+
* Gets or sets meta-information to associate with httpEquiv or name.
|
|
11699
|
+
*
|
|
11700
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMetaElement/content)
|
|
11701
|
+
*/
|
|
11694
11702
|
content: string;
|
|
11695
|
-
/**
|
|
11703
|
+
/**
|
|
11704
|
+
* Gets or sets information used to bind the value of a content attribute of a meta element to an HTTP response header.
|
|
11705
|
+
*
|
|
11706
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMetaElement/httpEquiv)
|
|
11707
|
+
*/
|
|
11696
11708
|
httpEquiv: string;
|
|
11709
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMetaElement/media) */
|
|
11697
11710
|
media: string;
|
|
11698
|
-
/**
|
|
11711
|
+
/**
|
|
11712
|
+
* Sets or retrieves the value specified in the content attribute of the meta object.
|
|
11713
|
+
*
|
|
11714
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMetaElement/name)
|
|
11715
|
+
*/
|
|
11699
11716
|
name: string;
|
|
11700
11717
|
/**
|
|
11701
11718
|
* Sets or retrieves a scheme to be used in interpreting the value of a property specified for the object.
|
|
11702
11719
|
* @deprecated
|
|
11720
|
+
*
|
|
11721
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMetaElement/scheme)
|
|
11703
11722
|
*/
|
|
11704
11723
|
scheme: string;
|
|
11705
11724
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLMetaElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|