/** * A step in a payment path. * Taken from https://xrpl.org/paths.html. * * @property account - If present, this path step represents rippling through the specified address. * MUST NOT be provided if this step specifies the currency or issuer fields. * @property currency - If present, this path step represents changing currencies through an order book. * The currency specified indicates the new currency. MUST NOT be provided if this step specifies the account field. * @property issue - If present, this path step represents changing currencies and this address defines * the issuer of the new currency. MUST be omitted if the currency is XRP. MUST NOT be provided if this * step specifies the account field. * @property type - (Deprecated) An indicator of which other fields are present. * @property type_hex - (Deprecated) A hexadecimal representation of the type field. */ export interface PathStep { readonly account?: string; readonly currency?: string; readonly issuer?: string; readonly type?: number; readonly type_hex?: string; } /** * Represents an entire payment path. * Taken from https://xrpl.org/paths.html. */ declare type PaymentPath = PathStep[]; export default PaymentPath; //# sourceMappingURL=PaymentPath.d.ts.map