koishi-plugin-mc-tools
Version:
我的世界(Minecraft)。可查询 MC 版本、服务器信息、玩家皮肤信息以及四大平台资源;支持管理服务器,功能梭哈
19 lines (18 loc) • 550 B
TypeScript
import { Context } from 'koishi';
import { Config } from '../index';
/**
* RCON服务器配置接口
* @interface ServerConfig
* @property {number} id - 服务器唯一标识
* @property {string} rconAddress - RCON地址,格式为"host:port"
* @property {string} rconPassword - RCON密码
*/
export interface ServerConfig {
id: number;
rconAddress: string;
rconPassword: string;
}
/**
* 注册所有与服务器管理相关的命令。
*/
export declare function registerServer(ctx: Context, parent: any, config: Config): void;