import 'reflect-metadata'; /** * @OnDisconnect decorator * Marks a method to be called when a client disconnects from the service * * @example * ```typescript * @OnDisconnect() * async handleDisconnect(socket: Socket, clientId: string) { * console.log(`Client ${clientId} disconnected`); * // Cleanup logic * } * ``` */ export declare function OnDisconnect(): (target: any, propertyKey: string, descriptor: PropertyDescriptor) => PropertyDescriptor; //# sourceMappingURL=OnDisconnect.d.ts.map