/** * Original work Copyright (c) 2019 Burst Apps Team * Modified (c) 2023 Signum Network */ import { Transaction } from './transaction'; import { Indexable } from './indexable'; /** * Transaction List * * @category entities * */ export interface TransactionList extends Indexable { readonly requestProcessingTime: number; readonly transactions: Transaction[]; }