lbx-jwt
Version:
Provides JWT authentication for loopback applications. Includes storing roles inside tokens and handling refreshing. Built-in reuse detection.
9 lines (8 loc) • 398 B
TypeScript
import { AuthenticatorAssertionResponseJSON } from '@simplewebauthn/types';
import { Base64UrlString } from '../../../encapsulation/webauthn.utilities';
export declare class AuthenticatorAssertionResponse implements AuthenticatorAssertionResponseJSON {
clientDataJSON: Base64UrlString;
authenticatorData: Base64UrlString;
signature: Base64UrlString;
userHandle?: Base64UrlString;
}