UNPKG

saga-transaction-lib

Version:

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

8 lines (7 loc) 264 B
import { ILogger } from '../interfaces/logger.interface'; export declare class DefaultLogger implements ILogger { log(message: string): void; error(message: string, error?: Error): void; warn(message: string): void; debug(message: string): void; }