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

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

package js.web.credentialmanagement.webauthn;

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


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

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

    @JSProperty
    ArrayBuffer getClientDataJSON();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy