@ledgerhq/live-common
Version:
Common ground for the Ledger Live apps
15 lines • 447 B
TypeScript
type Props = {
baseUrl?: string;
currencyTo?: string;
providers: string[];
additionalCoinsFlag?: boolean;
};
export type ResponseData = {
currencyGroups: Array<{
network: string;
supportedCurrencies: Array<string>;
}>;
};
export declare function fetchCurrencyFrom({ baseUrl, currencyTo, providers, additionalCoinsFlag, }: Props): Promise<string[]>;
export {};
//# sourceMappingURL=fetchCurrencyFrom.d.ts.map