UNPKG

koishi-plugin-screeps

Version:
8 lines (7 loc) 269 B
import { Context } from "koishi"; import { ScreepsApi } from "screeps-simple-api"; export interface CommandConfig { name: string; register: (ctx: Context, api: ScreepsApi) => void; } export declare const defineCommand: (config: CommandConfig) => CommandConfig;