@@ -2199,6 +2199,8 @@ interface ARIAMixin {
21992199 ariaColSpan: string | null;
22002200 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaCurrent) */
22012201 ariaCurrent: string | null;
2202+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaDescription) */
2203+ ariaDescription: string | null;
22022204 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaDisabled) */
22032205 ariaDisabled: string | null;
22042206 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/ariaExpanded) */
@@ -2926,8 +2928,11 @@ declare var AuthenticatorAssertionResponse: {
29262928interface AuthenticatorAttestationResponse extends AuthenticatorResponse {
29272929 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AuthenticatorAttestationResponse/attestationObject) */
29282930 readonly attestationObject: ArrayBuffer;
2931+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AuthenticatorAttestationResponse/getAuthenticatorData) */
29292932 getAuthenticatorData(): ArrayBuffer;
2933+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AuthenticatorAttestationResponse/getPublicKey) */
29302934 getPublicKey(): ArrayBuffer | null;
2935+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AuthenticatorAttestationResponse/getPublicKeyAlgorithm) */
29312936 getPublicKeyAlgorithm(): COSEAlgorithmIdentifier;
29322937 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AuthenticatorAttestationResponse/getTransports) */
29332938 getTransports(): string[];
0 commit comments