Home
last modified time | relevance | path

Searched refs:FetchLike (Results 1 – 8 of 8) sorted by relevance

/expo/packages/@expo/cli/src/api/rest/
H A DwrapFetchWithOffline.ts1 import { FetchLike } from './client.types';
7 export function wrapFetchWithOffline(fetchFunction: FetchLike): FetchLike {
H A DwrapFetchWithProxy.ts3 import { FetchLike } from './client.types';
9 export function wrapFetchWithProxy(fetchFunction: FetchLike): FetchLike {
H A DwrapFetchWithBaseUrl.ts3 import { FetchLike } from './client.types';
11 export function wrapFetchWithBaseUrl(fetch: FetchLike, baseUrl: string): FetchLike {
H A DwrapFetchWithProgress.ts1 import { FetchLike } from './client.types';
5 export function wrapFetchWithProgress(fetch: FetchLike): FetchLike {
H A Dclient.ts8 import { FetchLike } from './client.types';
54 export function wrapFetchWithCredentials(fetchFunction: FetchLike): FetchLike {
128 fetch?: FetchLike;
132 }): FetchLike {
H A Dclient.types.ts17 export type FetchLike = ( alias
/expo/packages/@expo/cli/src/utils/
H A DdownloadAppAsync.ts11 import { FetchLike, ProgressCallback } from '../api/rest/client.types';
30 let fetchInstance: FetchLike = fetchAsync;
/expo/packages/@expo/cli/src/api/rest/cache/
H A DwrapFetchWithCache.ts19 import { FetchLike } from '../client.types';
150 fetch: FetchLike,