yunzai-micro-plugin
Version:
Yunzai开发管理面板
8 lines (7 loc) • 314 B
TypeScript
import MicroWs from './app/ws.js';
declare let microWs: MicroWs;
declare const startServer: (port: number) => Promise<"ok" | void>;
declare const stopServer: () => Promise<any>;
declare const restartServer: (port: number) => Promise<any>;
export default microWs;
export { startServer, stopServer, restartServer };