UNPKG

react-native-fast-io

Version:

Modern IO for React Native, built on top of Nitro and Web standards

9 lines 345 B
import { RequestMethod } from '../native/network.nitro'; import { Blob } from './blob'; import { File } from './fs'; import { ReadableStream } from './streams'; export declare function fetch(url: string, { body, method }: { body: ReadableStream | Blob | File; method: RequestMethod; }): Promise<void>; //# sourceMappingURL=fetch.d.ts.map