UNPKG

koishi-plugin-mc-status-bot

Version:
11 lines (10 loc) 361 B
import { Context, Schema } from "koishi"; export declare const name = "mc-status-bot"; export interface Config { adminUsers: string[]; groupKeep: boolean; descriptionFormatting: boolean; } export declare const inject: string[]; export declare const Config: Schema<Config>; export declare function apply(ctx: Context, config: Config): Promise<void>;