mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-12-20 21:50:10 +08:00
feat: tipgroup type
This commit is contained in:
parent
edde2c210b
commit
876bfbd3cb
@ -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;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user