UNPKG

@yoroi/common

Version:

The Common package of Yoroi SDK

14 lines (11 loc) 385 B
/** * Flowtype definitions for fetcher * Generated by Flowgen from a Typescript Definition * Flowgen v1.21.0 */ import { AxiosRequestConfig } from "axios"; /** * @deprecated This function is deprecated and will be removed in a future release. Use `fetchData` instead. */ declare export var fetcher: Fetcher; export type Fetcher = <T>(config: AxiosRequestConfig) => Promise<T>;