export async function retryWithBackoff(fn: any, ...a: any[]) { return fn(); } export const RETRY_CONFIGS: Record = new Proxy({}, { get: () => ({ retries: 3 }) });