UNPKG

595 BTypeScriptView Raw
1import { AccountRootLedgerEntry, SignerListLedgerEntry, QueueData } from '../objects';
2export interface AccountInfoRequest {
3 account: string;
4 strict?: boolean;
5 queue?: boolean;
6 ledger_hash?: string;
7 ledger_index?: number | ('validated' | 'closed' | 'current');
8 signer_lists?: boolean;
9}
10export interface AccountInfoResponse {
11 account_data: AccountRootLedgerEntry;
12 signer_lists?: SignerListLedgerEntry[];
13 ledger_current_index?: number;
14 ledger_index?: number;
15 queue_data?: QueueData;
16 validated?: boolean;
17}
18//# sourceMappingURL=account_info.d.ts.map
\No newline at end of file