UNPKG

@nestjs-mod/two-factor

Version:

Two factor module with an error filter, guard, controller, database migrations and rest-sdk for work with module from other nodejs appliaction

12 lines (11 loc) 299 B
import { TwoFactorCode } from './two-factor-code.entity'; export declare class TwoFactorUser { id: string; username: string | null; secret: string; externalTenantId: string; externalUserId: string; createdAt: Date; updatedAt: Date; TwoFactorCode?: TwoFactorCode[]; }