1 | export = BaseServer;
|
2 | declare 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 | }
|
12 | declare namespace BaseServer {
|
13 | export { ClientConnection };
|
14 | }
|
15 | type ClientConnection = import("../Server").ClientConnection;
|