heybox-bot
Version:
A heybox chat bot frame
14 lines • 370 B
TypeScript
/**
* Bot配置接口
* 定义了Bot运行所需的配置参数
*/
export default interface BotConfig {
readonly token: string;
readonly logLevel?: 'debug' | 'info' | 'warn' | 'error';
readonly proxy?: {
readonly host: string;
readonly port: number;
readonly protocol: 'http' | 'https';
};
}
//# sourceMappingURL=index.d.ts.map