ripple-lib
Version:
Deprecated - consider migrating to xrpl.js: https://xrpl.org/xrpljs2-migration-guide.html
17 lines • 380 B
TypeScript
import { Amount } from './amounts';
export declare type Adjustment = {
address: string;
amount: Amount;
tag?: number;
};
export declare type MaxAdjustment = {
address: string;
maxAmount: Amount;
tag?: number;
};
export declare type MinAdjustment = {
address: string;
minAmount: Amount;
tag?: number;
};
//# sourceMappingURL=adjustments.d.ts.map