UNPKG

koishi-plugin-tshock

Version:
9 lines (8 loc) 268 B
import { Context, Schema } from "koishi"; export declare const name = "tshock"; export interface Config { server: string; token: string; } export declare const Config: Schema<Config>; export declare function apply(ctx: Context, config: Config): Promise<void>;