danger
Version:
Unit tests for Team Culture
19 lines (18 loc) • 871 B
TypeScript
/// <reference types="node" />
import * as node_fetch from "node-fetch";
/**
* Adds retry handling to fetch requests
*
* @param {(string | fetch.Request)} url the request
* @param {fetch.RequestInit} [init] the usual options
* @returns {Promise<fetch.Response>} network-y promise
*/
export declare function retryableFetch(url: string | node_fetch.Request, init: node_fetch.RequestInit): Promise<node_fetch.Response>;
/**
* Adds logging to every fetch request if a global var for `verbose` is set to true
*
* @param {(string | fetch.Request)} url the request
* @param {fetch.RequestInit} [init] the usual options
* @returns {Promise<fetch.Response>} network-y promise
*/
export declare function api(url: string | node_fetch.Request, init: node_fetch.RequestInit, suppressErrorReporting?: boolean, processEnv?: NodeJS.ProcessEnv): Promise<node_fetch.Response>;