@ledgerhq/live-common
Version:
Common ground for the Ledger Live apps
14 lines • 534 B
TypeScript
import { ResponseData as ResponseDataTo } from "./fetchCurrencyTo";
import { ResponseData as ResponseDataFrom } from "./fetchCurrencyFrom";
type Props = {
baseUrl?: string;
additionalCoinsFlag?: boolean;
providers: string[];
};
export type ResponseDataAll = {
from: ResponseDataFrom["currencyGroups"];
to: ResponseDataTo["currencyGroups"];
};
export declare function fetchCurrencyAll({ baseUrl, providers, additionalCoinsFlag, }: Props): Promise<string[]>;
export {};
//# sourceMappingURL=fetchCurrencyAll.d.ts.map