import { BackgroundTransactionLog } from './background-transaction-log.js'; export interface BackgroundTransactionLogger { logTransaction(txLog: BackgroundTransactionLog): Promise; readTransactionLog(txGuid: string): Promise; }