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

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

package js.web.credentialmanagement.webauthn;

import js.lang.Any;
import org.teavm.jso.JSProperty;


public interface PublicKeyCredentialParameters extends Any {
    @JSProperty
    int getAlg();

    @JSProperty
    void setAlg(int alg);

    @JSProperty
    PublicKeyCredentialType getType();

    @JSProperty
    void setType(PublicKeyCredentialType type);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy