diff --git a/src/core/types/msg.ts b/src/core/types/msg.ts index bc310f74..d4b3f5cf 100644 --- a/src/core/types/msg.ts +++ b/src/core/types/msg.ts @@ -383,12 +383,21 @@ export enum MemberAddShowType { K_YOU_INVITE_OTHER = 7, } +/** + * 群提示元素成员角色枚举 + */ +export enum NTGroupGrayElementRole { + KOTHER = 0, + KMEMBER = 1, + KADMIN = 2 +} + /** * 群提示元素接口 */ export interface TipGroupElement { type: TipGroupElementType; - role: 0; + role: NTGroupGrayElementRole; groupName: string; memberUid: string; memberNick: string;