UNPKG

@fleek-platform/agents-ui

Version:

The Fleek Platform Agents UI provides a simple interface for deploying, monitoring, and configuring your agents––making management straightforward

10 lines (9 loc) 286 B
interface FetchWithRetryParams { url: string; options?: RequestInit; maxRetries?: number; delay?: number; attempt?: number; } export declare const fetchWithRetry: ({ url, options, maxRetries, delay, attempt, }: FetchWithRetryParams) => Promise<Response>; export {};