UNPKG

@rytass/member-base-nestjs-module

Version:

Rytass Member System NestJS Base Module

12 lines (11 loc) 344 B
import { type Relation } from 'typeorm'; import { BaseMemberEntity } from './base-member.entity'; export declare const MemberLoginLogRepo: unique symbol; export declare class MemberLoginLogEntity { id: string; memberId: string; success: boolean; ip: string | null; createdAt: Date; member: Relation<BaseMemberEntity>; }