8 lines
158 B
TypeScript
8 lines
158 B
TypeScript
import type { Server as SocketServer } from 'socket.io'
|
|
|
|
export default async function (io: SocketServer) {
|
|
io.on('connection', async (socket) => {
|
|
|
|
})
|
|
}
|