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