import { Transaction } from './transaction'; import { Indexable } from './indexable'; export interface TransactionList extends Indexable { readonly requestProcessingTime: number; readonly transactions: Transaction[]; }