UNPKG

@promptbook/remote-server

Version:

Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action

10 lines (9 loc) 311 B
/// <reference types="node" /> import http from 'http'; import { Server } from 'socket.io'; /** * Creates the Socket.io server with the existing transport and CORS settings. * * @private internal utility of `startRemoteServer` */ export declare function createSocketServer(httpServer: http.Server): Server;