@types/web 0.0.133 → 0.0.134
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 +7 -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.134 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.134.
|
package/index.d.ts
CHANGED
|
@@ -7711,6 +7711,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, InnerHTML, Non
|
|
|
7711
7711
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/attachShadow)
|
|
7712
7712
|
*/
|
|
7713
7713
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
7714
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/checkVisibility) */
|
|
7714
7715
|
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
7715
7716
|
/**
|
|
7716
7717
|
* Returns the first (starting at element) inclusive ancestor that matches selectors, and null otherwise.
|
|
@@ -10997,6 +10998,7 @@ interface HTMLInputElement extends HTMLElement, PopoverInvokerElement {
|
|
|
10997
10998
|
/** Sets or retrieves the initial contents of the object. */
|
|
10998
10999
|
defaultValue: string;
|
|
10999
11000
|
dirName: string;
|
|
11001
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/disabled) */
|
|
11000
11002
|
disabled: boolean;
|
|
11001
11003
|
/**
|
|
11002
11004
|
* Returns a FileList object on a file type input object.
|
|
@@ -11293,7 +11295,11 @@ interface HTMLLinkElement extends HTMLElement, LinkStyle {
|
|
|
11293
11295
|
disabled: boolean;
|
|
11294
11296
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/fetchPriority) */
|
|
11295
11297
|
fetchPriority: string;
|
|
11296
|
-
/**
|
|
11298
|
+
/**
|
|
11299
|
+
* Sets or retrieves a destination URL or an anchor point.
|
|
11300
|
+
*
|
|
11301
|
+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/href)
|
|
11302
|
+
*/
|
|
11297
11303
|
href: string;
|
|
11298
11304
|
/** Sets or retrieves the language code of the object. */
|
|
11299
11305
|
hreflang: string;
|