@types/web 0.0.116 → 0.0.117
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 +5 -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.117 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.117.
|
package/index.d.ts
CHANGED
|
@@ -2201,6 +2201,8 @@ interface ARIAMixin {
|
|
|
2201
2201
|
ariaColSpan: string | null;
|
|
2202
2202
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaCurrent) */
|
|
2203
2203
|
ariaCurrent: string | null;
|
|
2204
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaDescription) */
|
|
2205
|
+
ariaDescription: string | null;
|
|
2204
2206
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaDisabled) */
|
|
2205
2207
|
ariaDisabled: string | null;
|
|
2206
2208
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaExpanded) */
|
|
@@ -2928,8 +2930,11 @@ declare var AuthenticatorAssertionResponse: {
|
|
|
2928
2930
|
interface AuthenticatorAttestationResponse extends AuthenticatorResponse {
|
|
2929
2931
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AuthenticatorAttestationResponse/attestationObject) */
|
|
2930
2932
|
readonly attestationObject: ArrayBuffer;
|
|
2933
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AuthenticatorAttestationResponse/getAuthenticatorData) */
|
|
2931
2934
|
getAuthenticatorData(): ArrayBuffer;
|
|
2935
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AuthenticatorAttestationResponse/getPublicKey) */
|
|
2932
2936
|
getPublicKey(): ArrayBuffer | null;
|
|
2937
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AuthenticatorAttestationResponse/getPublicKeyAlgorithm) */
|
|
2933
2938
|
getPublicKeyAlgorithm(): COSEAlgorithmIdentifier;
|
|
2934
2939
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AuthenticatorAttestationResponse/getTransports) */
|
|
2935
2940
|
getTransports(): string[];
|