UNPKG

@bitblit/epsilon

Version:

Tiny adapter to simplify building API gateway Lambda APIS

6 lines (5 loc) 265 B
import { BackgroundTransactionLog } from './background-transaction-log'; export interface BackgroundTransactionLogger { logTransaction(txLog: BackgroundTransactionLog): Promise<void>; readTransactionLog(txGuid: string): Promise<BackgroundTransactionLog>; }