UNPKG

lbx-jwt

Version:

Provides JWT authentication for loopback applications. Includes storing roles inside tokens and handling refreshing. Built-in reuse detection.

11 lines (10 loc) 524 B
import { AuthenticatorAttestationResponseJSON, AuthenticatorTransportFuture } from '@simplewebauthn/types'; import { Base64UrlString } from '../../../encapsulation/webauthn.utilities'; export declare class AuthenticatorAttestationResponse implements AuthenticatorAttestationResponseJSON { clientDataJSON: Base64UrlString; attestationObject: Base64UrlString; authenticatorData?: Base64UrlString; transports?: AuthenticatorTransportFuture[]; publicKeyAlgorithm?: number; publicKey?: Base64UrlString; }