import { BasicEvent } from "@skeldjs/events"; import { Connection } from "../../../worker"; import { ClientEvent } from "./ClientEvent"; /** * Emitted when a client connects to the server. Emitted after the client has * sent a valid 0x08 Identify packet. */ export declare class ClientConnectEvent extends BasicEvent implements ClientEvent { /** * The client that connected to the server, fully identified. */ readonly client: Connection; static eventName: "client.connect"; eventName: "client.connect"; constructor( /** * The client that connected to the server, fully identified. */ client: Connection); }