/** * Specifies amount of an issued currency. * Taken from https://xrpl.org/currency-formats.html#issued-currency-amounts. * * @property currency - Arbitrary code for currency to issue. Cannot be XRP. * @property value - Quoted decimal representation of the amount of currency. This can include scientific notation. * @property issue - Unique account address of the entity issuing the currency. */ interface IssuedCurrency { readonly currency: string; readonly value: string; readonly issuer: string; } /** * Represents an amount of either XRP (case string) or an issued currency (case IssuedCurrency). * Taken from https://xrpl.org/basic-data-types.html#specifying-currency-amounts. */ declare type CurrencyAmount = string | IssuedCurrency; export default CurrencyAmount; //# sourceMappingURL=CurrencyAmount.d.ts.map