UNPKG

koishi-plugin-deerpipe-qbot

Version:

炉管新插件,支持大乱斗!

26 lines (25 loc) 607 B
import { Context, Schema } from 'koishi'; export declare const name = "deerpipe-qbot"; export interface Config { specialDates: string[]; isDevelopment: boolean; } export declare const inject: { required: string[]; }; export declare const Config: Schema<Config>; declare module 'koishi' { interface Tables { users: UserData; } } export interface UserData { userId: string; username: string; lastCheckIn: string | null; points: number; lv: number; experience: number; streak: number; } export declare function apply(ctx: Context, config: Config): void;