lbx-jwt
Version:
Provides JWT authentication for loopback applications. Includes storing roles inside tokens and handling refreshing. Built-in reuse detection.
15 lines (14 loc) • 439 B
TypeScript
import { BiometricCredentials } from '../../../models';
/**
* The response for finalizing a biometric registration.
*/
export declare class ConfirmBiometricRegistrationResponse {
/**
* All biometric credentials of the user, including the new one if registration was successful.
*/
biometricCredentials: BiometricCredentials[];
/**
* Whether or not registration was successful.
*/
verified: boolean;
}