UNPKG

yoonite-saga

Version:

> Orchestration de workflows transactionnels avec gestion de compensation (pattern Saga)

7 lines (6 loc) 138 B
export class SagaResponse<ContextType> { state: "success" | "failed"; context: ContextType; history: any[]; errors: Array<any>; }