koishi-plugin-kbot
Version:
A muti-function qq bot for koishi
16 lines (15 loc) • 331 B
TypeScript
import type { Context } from 'koishi';
interface IBlackList {
id: number;
qq: string;
name: string;
time: number;
reason: string;
}
declare module 'koishi' {
interface Tables {
'guild.blackList': IBlackList;
}
}
export declare function initBlackList(context: Context): Promise<void>;
export {};