@@ -2199,6 +2199,8 @@ interface ARIAMixin {
2199
2199
ariaColSpan: string | null;
2200
2200
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaCurrent) */
2201
2201
ariaCurrent: string | null;
2202
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaDescription) */
2203
+ ariaDescription: string | null;
2202
2204
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaDisabled) */
2203
2205
ariaDisabled: string | null;
2204
2206
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaExpanded) */
@@ -2926,8 +2928,11 @@ declare var AuthenticatorAssertionResponse: {
2926
2928
interface AuthenticatorAttestationResponse extends AuthenticatorResponse {
2927
2929
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AuthenticatorAttestationResponse/attestationObject) */
2928
2930
readonly attestationObject: ArrayBuffer;
2931
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AuthenticatorAttestationResponse/getAuthenticatorData) */
2929
2932
getAuthenticatorData(): ArrayBuffer;
2933
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AuthenticatorAttestationResponse/getPublicKey) */
2930
2934
getPublicKey(): ArrayBuffer | null;
2935
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AuthenticatorAttestationResponse/getPublicKeyAlgorithm) */
2931
2936
getPublicKeyAlgorithm(): COSEAlgorithmIdentifier;
2932
2937
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AuthenticatorAttestationResponse/getTransports) */
2933
2938
getTransports(): string[];
0 commit comments