ipfs-utils
Version:
Package to aggregate shared logic and dependencies for the IPFS ecosystem
19 lines • 669 B
TypeScript
export type FetchOptions = import('../types').FetchOptions;
export type ProgressFn = import('../types').ProgressFn;
/**
* @param {string | Request} url
* @param {FetchOptions} options
*/
declare function fetchWith(url: string | Request, options?: FetchOptions): any;
import { Request } from "../fetch";
import { Headers } from "../fetch";
export class ResponseWithURL extends globalThis.Response {
/**
* @param {string} url
* @param {BodyInit} body
* @param {ResponseInit} options
*/
constructor(url: string, body: BodyInit, options: ResponseInit);
}
export { fetchWith as fetch, Request, Headers };
//# sourceMappingURL=fetch.rn.d.ts.map