lbx-jwt
Version:
Provides JWT authentication for loopback applications. Includes storing roles inside tokens and handling refreshing. Built-in reuse detection.
13 lines (12 loc) • 699 B
TypeScript
import { AuthenticatorAttachment, RegistrationResponseJSON } from '@simplewebauthn/types';
import { AuthenticationExtensionsOutputs } from './authentication-extensions-outputs.model';
import { AuthenticatorAttestationResponse } from './authenticator-attestation-response.model';
import { Base64UrlString } from '../../../encapsulation/webauthn.utilities';
export declare class BiometricRegistrationResponse implements RegistrationResponseJSON {
id: Base64UrlString;
rawId: Base64UrlString;
response: AuthenticatorAttestationResponse;
authenticatorAttachment?: AuthenticatorAttachment;
clientExtensionResults: AuthenticationExtensionsOutputs;
type: PublicKeyCredentialType;
}