/** * TX API Server Library * * REST/HTTP API server using Effect HttpApi. * Provides HTTP interface for task management, learnings, runs, and sync. * * This module provides the library API. For CLI usage, see server.ts. */ import { Layer } from "effect"; /** * Create the full server Layer with all dependencies resolved. * * The returned Layer, when launched, starts the HTTP server and keeps * it alive until the process receives a termination signal. */ export declare const makeServerLive: (options: { port?: number; dbPath?: string; hostname?: string; }) => Layer.Layer; /** * Parse command line arguments and launch the server. * Exported for use by the CLI entry point. */ export declare const main: () => void; //# sourceMappingURL=server-lib.d.ts.map