UNPKG

@a2alite/sdk

Version:

A Modular SDK (Server & Client) for Agent to Agent (A2A) protocol, with easy task lifecycle management

7 lines (6 loc) 264 B
import { JSONRPCError, JSONRPCRequest } from "../../types/types.ts"; /** * Helper to read and parse JSON body from Node.js IncomingMessage */ declare function jsonRpcBodyParser(body: string): Promise<JSONRPCRequest | JSONRPCError>; export { jsonRpcBodyParser };