lbx-jwt
Version:
Provides JWT authentication for loopback applications. Includes storing roles inside tokens and handling refreshing. Built-in reuse detection.
8 lines (7 loc) • 391 B
TypeScript
import { AuthenticatorTransportFuture, PublicKeyCredentialDescriptorJSON } from '@simplewebauthn/types';
import { Base64UrlString } from '../../../encapsulation/webauthn.utilities';
export declare class PublicKeyCredentialDescriptor implements PublicKeyCredentialDescriptorJSON {
id: Base64UrlString;
type: PublicKeyCredentialType;
transports?: AuthenticatorTransportFuture[];
}