@ledgerhq/live-common
Version:
Common ground for the Ledger Live apps
6 lines • 362 B
TypeScript
import { ExchangeSell, ExchangeSellRaw } from "./platform/types";
import { ExchangeSwap, ExchangeSwapRaw } from "./swap/types";
export type Exchange = ExchangeSwap | ExchangeSell;
export declare function isExchangeSwap(exchange: Exchange): exchange is ExchangeSwap;
export type ExchangeRaw = ExchangeSwapRaw | ExchangeSellRaw;
//# sourceMappingURL=types.d.ts.map