All Downloads are FREE. Search and download functionalities are using the official Maven repository.

js.web.credentialmanagement.webauthn.AuthenticatorAttestationResponse Maven / Gradle / Ivy

package js.web.credentialmanagement.webauthn;

import js.util.buffers.ArrayBuffer;
import org.teavm.jso.JSBody;
import org.teavm.jso.JSProperty;


public interface AuthenticatorAttestationResponse extends AuthenticatorResponse {
    @JSBody(script = "return AuthenticatorAttestationResponse.prototype")
    static AuthenticatorAttestationResponse prototype() {
        throw new UnsupportedOperationException("Available only in JavaScript");
    }

    @JSBody(script = "return new AuthenticatorAttestationResponse()")
    static AuthenticatorAttestationResponse create() {
        throw new UnsupportedOperationException("Available only in JavaScript");
    }

    @JSProperty
    ArrayBuffer getAttestationObject();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy