Interface BotJoinGroupEvent

Bot加入了一个新群

interface BotJoinGroupEvent {
    group: Group;
    reply?: ((msgChain: string | MessageChain, quote?: boolean) => Promise<void>);
    type: "BotJoinGroupEvent";
}

Hierarchy (view full)

Properties

Properties

group: Group
reply?: ((msgChain: string | MessageChain, quote?: boolean) => Promise<void>)

reply 辅助函数

type: "BotJoinGroupEvent"