import { InternalBackgroundEntry } from '../../background/internal-background-entry'; export interface BackgroundTransactionLog { request: InternalBackgroundEntry; running: boolean; runtimeMS?: number; result?: any; error?: any; }