UNPKG

@rytass/member-base-nestjs-module

Version:

Rytass Member System NestJS Base Module

12 lines (11 loc) 339 B
import { 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>; }