UNPKG

koishi-plugin-onebot-tool

Version:

OneBot 工具集,带有点赞、打卡、拍一拍、表情回应和 AI 语音等功能,可独立开关和自由配置

21 lines (20 loc) 475 B
import { Context } from 'koishi'; /** * AI语音功能管理类 * 提供AI语音角色列表、语音发送等命令 */ export declare class Voice { ctx: Context; logger: any; /** * 构造函数 * @param ctx Koishi 上下文 * @param logger 日志记录器 */ constructor(ctx: Context, logger: any); /** * 注册AI语音相关命令 * @param parentCmd 父命令对象 */ registerCommands(parentCmd: any): void; }