@rytass/member-base-nestjs-module
Version:
Rytass Member System NestJS Base Module
10 lines (9 loc) • 320 B
TypeScript
import { type 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>;
}