absolute-widget
Version:
An embeddable User Login and Registration using Absolute & PasswordLess with consent page
16 lines (15 loc) • 542 B
TypeScript
import { default as React } from 'react';
import { DeviceInfo, UserInfo } from '../../types';
interface MFAConfirmIdentityProps {
authToken?: string;
user: UserInfo;
authType?: string;
baseUrl: string;
deviceData?: DeviceInfo | null;
onClose: () => void;
returnCall: (status: number) => void;
logAction: (action: string, message: string, code: number, data?: unknown) => void;
passwordlessApps: any;
}
declare const MFAConfirmIdentity: React.FC<MFAConfirmIdentityProps>;
export default MFAConfirmIdentity;