saga-transaction-lib
Version:
A TypeScript library for implementing the Saga pattern to manage distributed transactions and complex workflows
10 lines (9 loc) • 380 B
TypeScript
export * from './interfaces/step.interface';
export * from './interfaces/logger.interface';
export * from './interfaces/error-handler.interface';
export * from './types/saga-options.type';
export * from './types/transaction-context.type';
export * from './utils/default-logger';
export * from './utils/default-error-handler';
export * from './saga';
export * from './decorators';