UNPKG

408 BTypeScriptView Raw
1export = BaseServer;
2declare class BaseServer {
3 /**
4 * @param {import("../Server")} server
5 */
6 constructor(server: import("../Server"));
7 /** @type {import("../Server")} */
8 server: import("../Server");
9 /** @type {ClientConnection[]} */
10 clients: ClientConnection[];
11}
12declare namespace BaseServer {
13 export { ClientConnection };
14}
15type ClientConnection = import("../Server").ClientConnection;