feat: tipgroup type

This commit is contained in:
手瓜一十雪 2024-11-25 19:32:30 +08:00
parent edde2c210b
commit 876bfbd3cb

View File

@ -392,6 +392,24 @@ export enum NTGroupGrayElementRole {
KADMIN = 2 KADMIN = 2
} }
/**
*
* */
export interface NTGroupGrayMember {
serialVersionUID: string;
uid: string;
name: string;
}
/**
*
*
* */
export interface NTGroupGrayInviterAndInvite {
invited: NTGroupGrayMember;
inviter: NTGroupGrayMember;
serialVersionUID: string;
}
/** /**
* *
*/ */
@ -408,13 +426,13 @@ export interface TipGroupElement {
createGroup: null; createGroup: null;
memberAdd?: { memberAdd?: {
showType: MemberAddShowType; showType: MemberAddShowType;
otherAdd: null; otherAdd: NTGroupGrayMember;
otherAddByOtherQRCode: null; otherAddByOtherQRCode: NTGroupGrayInviterAndInvite;
otherAddByYourQRCode: null; otherAddByYourQRCode: NTGroupGrayMember;
youAddByOtherQRCode: null; youAddByOtherQRCode: NTGroupGrayMember;
otherInviteOther: null; otherInviteOther: NTGroupGrayInviterAndInvite;
otherInviteYou: null; otherInviteYou: NTGroupGrayMember;
youInviteOther: null youInviteOther: NTGroupGrayMember;
}; };
shutUp?: { shutUp?: {
curTime: string; curTime: string;