@ledgerhq/live-common
Version:
Common ground for the Ledger Live apps
13 lines • 333 B
TypeScript
import { AccountType } from "../enum/Account";
import { OperationType } from "../enum/OperationType";
export interface Fiat {
locale: string;
currencyTicker: string;
}
export interface BuySell {
crypto: AccountType;
fiat: Fiat;
amount: string;
operation: OperationType;
}
//# sourceMappingURL=BuySell.d.ts.map