type CacheResponse = { code?: string; refetchHeaders?: Headers; }; /** * A workaround for the fact that the iOS HTTP cache won't cache the call * object bundle due to size. */ export default class iOSCallObjectBundleCache { static get(url: string, ignoreExpiry?: boolean): Promise; static renew(url: string, headers: Headers): Promise; static set(url: string, code: string, headers: Headers): Promise; } export {};