mirror of
https://github.com/cudr/slate-collaborative.git
synced 2025-06-13 12:54:04 +00:00
5 lines
157 B
TypeScript
5 lines
157 B
TypeScript
export const getClients = (io: SocketIO.Server, nsp: string) =>
|
|
new Promise((r, j) => {
|
|
io.of(nsp).clients((e: any, c: any) => (e ? j(e) : r(c)))
|
|
})
|