Files
marianesaldana 80dbd947e5 Initial commit
2026-05-23 08:59:34 -06:00

10 lines
352 B
TypeScript

import { Server as WebSocketServer } from 'ws';
/**
* Starts the eventsSocket at the given path
*
*/
export default function createEventsSocketEndpoint(broadcast: (method: string, params?: Record<string, any>) => void): {
server: WebSocketServer;
reportEvent: (event: any) => void;
};
//# sourceMappingURL=createEventsSocketEndpoint.d.ts.map