UNPKG

@sphekes/koishi-plugin-palctrl

Version:

A simple extension to manage PalWorld Server

20 lines (19 loc) 522 B
import { Schema } from 'koishi'; export interface PalctrlBasicConfig { host: string; timeout: number; } export interface PalctrlRestConfig { restPort: number; restUsername: string; restPassword: string; useHttps: boolean; } export interface PalctrlWinrmConfig { winrmPort: number; winrmUsername: string; winrmPassword: string; winrmServiceName: string; } export type Config = PalctrlBasicConfig & PalctrlRestConfig & PalctrlWinrmConfig; export declare const Config: Schema<Config>;