UNPKG

zumokit

Version:

ZumoKit is a Wallet as a Service SDK

15 lines (14 loc) 445 B
import { AccountDataSnapshotJSON } from '../interfaces'; import { Account } from './Account'; import { Transaction } from './Transaction'; /** Account data. */ export declare class AccountDataSnapshot { /** @internal */ json: AccountDataSnapshotJSON; /** Account. */ account: Account; /** Account's transactions. */ transactions: Array<Transaction>; /** @internal */ constructor(json: AccountDataSnapshotJSON); }