@types/web 0.0.85 → 0.0.86
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 +3 -0
- 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.86 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.86.
|
package/index.d.ts
CHANGED
|
@@ -6693,6 +6693,8 @@ interface HTMLFormElement extends HTMLElement {
|
|
|
6693
6693
|
name: string;
|
|
6694
6694
|
/** Designates a form that is not validated when submitted. */
|
|
6695
6695
|
noValidate: boolean;
|
|
6696
|
+
rel: string;
|
|
6697
|
+
readonly relList: DOMTokenList;
|
|
6696
6698
|
/** Sets or retrieves the window or frame at which to target content. */
|
|
6697
6699
|
target: string;
|
|
6698
6700
|
/** Returns whether a form will validate when it is submitted, without having to submit it. */
|
|
@@ -11242,6 +11244,7 @@ interface PublicKeyCredential extends Credential {
|
|
|
11242
11244
|
declare var PublicKeyCredential: {
|
|
11243
11245
|
prototype: PublicKeyCredential;
|
|
11244
11246
|
new(): PublicKeyCredential;
|
|
11247
|
+
isConditionalMediationAvailable(): Promise<boolean>;
|
|
11245
11248
|
isUserVerifyingPlatformAuthenticatorAvailable(): Promise<boolean>;
|
|
11246
11249
|
};
|
|
11247
11250
|
|