UNPKG

@rytass/member-base-nestjs-module

Version:

Rytass Member System NestJS Base Module

10 lines (9 loc) 315 B
import { Relation } from 'typeorm'; import { BaseMemberEntity } from './base-member.entity'; export declare const MemberOAuthRecordRepo: unique symbol; export declare class MemberOAuthRecordEntity { memberId: string; channel: string; channelIdentifier: string; member: Relation<BaseMemberEntity>; }