UNPKG

koishi-plugin-auto-tata-group-name

Version:

个人自用,自动更新群聊名称的 Koishi 插件,根据群聊成员数量变化自动更新群名

13 lines (12 loc) 374 B
import { Context, Schema } from 'koishi'; export declare const name = "auto-tata-group-name"; export interface GuildConfig { guildId: string; nameTemplate: string; } export interface Config { guildTemplates: GuildConfig[]; updateDelay: number; } export declare const Config: Schema<Config>; export declare function apply(ctx: Context, config: Config): void;