UNPKG

koishi-plugin-screeps

Version:
12 lines (11 loc) 336 B
import { Context, Schema } from "koishi"; import "koishi-plugin-cron"; export declare const name = "screeps"; export declare const inject: { required: string[]; }; export interface Config { token: string; } export declare const Config: Schema<Config>; export declare function apply(ctx: Context, config: Config): Promise<void>;