import type { AuthenticatorAttestationResponseJson } from './AuthenticatorAttestationResponseJson'; import type { AuthenticatorAssertionResponseJson } from './AuthenticatorAssertionResponseJson'; /** * @type PublicKeyCredentialJsonResponse * Authenticator response (attestation for registration, assertion for authentication) */ export type PublicKeyCredentialJsonResponse = AuthenticatorAssertionResponseJson | AuthenticatorAttestationResponseJson;