UNPKG

487 BTypeScriptView Raw
1import { Trustline } from '../objects';
2export interface AccountLinesRequest {
3 account: string;
4 ledger_hash?: string;
5 ledger_index?: number | ('validated' | 'closed' | 'current');
6 peer?: string;
7 limit?: number;
8 marker?: any;
9}
10export interface AccountLinesResponse {
11 account: string;
12 lines: Trustline[];
13 ledger_current_index?: number;
14 ledger_index?: number;
15 ledger_hash?: string;
16 marker?: any;
17}
18//# sourceMappingURL=account_lines.d.ts.map
\No newline at end of file