UNPKG

koishi-plugin-kbot

Version:
16 lines (15 loc) 331 B
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 {};