forked from noxious/server
7 lines
227 B
TypeScript
7 lines
227 B
TypeScript
import { Socket, Server } from "socket.io";
|
|
|
|
export default function Disconnect(socket: Socket, io: Server) {
|
|
socket.on('disconnect', (data: any) => {
|
|
console.log(`---User ${socket.id} has disconnected.`);
|
|
});
|
|
} |