KarinJS / kritor

新时代统一的聊天机器人应用接口标准
64 stars 4 forks source link

Feat: 群转让通知事件 #12

Closed shijinn520 closed 3 months ago

shijinn520 commented 3 months ago

参考icqq

/** 群转让 */
export interface GroupTransferEvent extends GroupNoticeEvent {
    sub_type: "transfer";
    /** 转让群的群员账号 */
    operator_id: number;
    /** 被转让为群主的账号 */
    user_id: number;
}