divvy-lib
Version:
A JavaScript API for interacting with Divvy in Node.js and the browser
17 lines (16 loc) • 339 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;
};