@xynehq/jaf
Version:
Juspay Agent Framework - A purely functional agent framework with immutable state and composable tools
12 lines • 394 B
TypeScript
import { FastifyInstance } from 'fastify';
import { ServerConfig } from './types';
/**
* Create and configure a JAF server instance
* Functional implementation following JAF principles
*/
export declare function createJAFServer<Ctx>(config: ServerConfig<Ctx>): {
app: FastifyInstance;
start: () => Promise<void>;
stop: () => Promise<void>;
};
//# sourceMappingURL=server.d.ts.map