UNPKG

@enteocode/nestjs-mfa

Version:

Implementation agnostic RFC-compliant Multi-Factor Authentication (2FA/MFA) module for NestJS with recovery code support

11 lines (10 loc) 240 B
import type { Identifier } from '../types'; /** * Should be triggered when MFA was disabled for a user * * @event */ export declare class AuthenticationDisabledEvent { readonly user: Identifier; constructor(user: Identifier); }