@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
15 lines (14 loc) • 345 B
TypeScript
import { TwoFactorUser } from './two-factor-user.entity';
export declare class TwoFactorCode {
id: string;
type: string;
operationName: string;
code: string;
used: boolean;
outdated: boolean;
userId: string;
externalTenantId: string;
createdAt: Date;
updatedAt: Date;
TwoFactorUser?: TwoFactorUser;
}