8 lines
236 B
TypeScript
8 lines
236 B
TypeScript
// lib/socketServer.ts
|
|
import type { Server as IOServer } from 'socket.io';
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
export function getDevicesIo(): IOServer | null {
|
|
return (global as any).devicesIo ?? null;
|
|
}
|