Home
last modified time | relevance | path

Searched refs:wrapFetchWithProgress (Results 1 – 3 of 3) sorted by relevance

/expo/packages/@expo/cli/src/api/rest/__tests__/
H A DwrapFetchWithProgress-test.ts9 import { wrapFetchWithProgress } from '../wrapFetchWithProgress';
16 describe(wrapFetchWithProgress, () => {
43 await wrapFetchWithProgress(fetch)(url + '/asset', {
74 await wrapFetchWithProgress(fetch)(url + '/asset', {
/expo/packages/@expo/cli/src/api/rest/
H A Dclient.ts11 import { wrapFetchWithProgress } from './wrapFetchWithProgress';
116 const fetchWithCredentials = wrapFetchWithProgress(wrapFetchWithCredentials(fetchWithProxy));
148 export const fetchAsync = wrapFetchWithProgress(wrapFetchWithCredentials(fetchWithProxy));
H A DwrapFetchWithProgress.ts5 export function wrapFetchWithProgress(fetch: FetchLike): FetchLike { function