@yoroi/types
Version:
The Yoroi Types package of Yoroi SDK
7 lines • 310 B
TypeScript
import { AxiosRequestConfig } from 'axios';
import { ExchangeProvider } from './provider';
export interface ExchangeApi {
getBaseUrl(providerId: string, fetcherOptions?: AxiosRequestConfig): Promise<string>;
getProviders(): Promise<Record<string, ExchangeProvider>>;
}
//# sourceMappingURL=api.d.ts.map