UNPKG

@promptbook/remote-server

Version:

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

9 lines (8 loc) 503 B
import type { RemoteServerOptions } from '../types/RemoteServerOptions'; import type { StartRemoteServerConfiguration } from './StartRemoteServerConfiguration'; /** * Resolves option defaults once so the rest of the remote-server flow can work with a single shape. * * @private internal utility of `startRemoteServer` */ export declare function resolveStartRemoteServerConfiguration<TCustomOptions>(startOptions: RemoteServerOptions<TCustomOptions>): StartRemoteServerConfiguration<TCustomOptions>;