Interface GroupRecallEvent

群消息撤回

interface GroupRecallEvent {
    authorId: number;
    group: Group;
    messageId: number;
    operator: null | Member;
    reply?: ((msgChain: string | MessageChain, quote?: boolean) => Promise<void>);
    time: number;
    type: "GroupRecallEvent";
}

Hierarchy (view full)

Properties

authorId: number
group: Group
messageId: number
operator: null | Member
reply?: ((msgChain: string | MessageChain, quote?: boolean) => Promise<void>)

reply 辅助函数

time: number
type: "GroupRecallEvent"