UNPKG

tensaikit

Version:

An autonomous DeFi AI Agent Kit on Katana enabling AI agents to plan and execute on-chain financial operations.

7 lines (6 loc) 208 B
export interface FetchOptions { method?: "GET" | "POST"; headers?: Record<string, string>; body?: any; } export declare const fetchFromApi: <T>(url: string, options?: FetchOptions) => Promise<T>;