UNPKG

@promptbook/remote-client

Version:

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

12 lines (11 loc) 439 B
/// <reference types="node" /> import express from 'express'; import http from 'http'; import { Server } from 'socket.io'; import type { RemoteServer } from '../RemoteServer'; /** * Creates the public RemoteServer handle with lazily exposed internals. * * @private internal utility of `startRemoteServer` */ export declare function createRemoteServerHandle(app: express.Express, httpServer: http.Server, server: Server): RemoteServer;