UNPKG

saga-transaction-lib

Version:

A TypeScript library for implementing the Saga pattern to manage distributed transactions and complex workflows

7 lines (6 loc) 177 B
export interface ILogger { log(message: string): void; error(message: string, error?: Error): void; warn(message: string): void; debug(message: string): void; }