Interface MessageHandleConfig

interface MessageHandleConfig {
    chat_type?: "all" | ChatType[];
    description: string;
    handle: handleFunction;
    premission?: "all" | "groupAdmin" | "groupOwner" | "sysAdmin";
}

Hierarchy

Properties

chat_type?: "all" | ChatType[]

描述Config在哪类聊天中生效。 未指定则默认等同于 'all'

description: string

必填,描述插件为什么要使用全局消息处理

消息处理函数

premission?: "all" | "groupAdmin" | "groupOwner" | "sysAdmin"

描述该Config的适用权限范围 默认 'all'

Todo

'groupAdmin' 'groupOwner' 尚未实现

Generated using TypeDoc