16 lines
299 B
TypeScript
16 lines
299 B
TypeScript
|
|
/**
|
||
|
|
* @zh 分布式模块导出
|
||
|
|
* @en Distributed module exports
|
||
|
|
*/
|
||
|
|
|
||
|
|
export {
|
||
|
|
SagaOrchestrator,
|
||
|
|
createSagaOrchestrator,
|
||
|
|
type SagaOrchestratorConfig,
|
||
|
|
type SagaStep,
|
||
|
|
type SagaStepState,
|
||
|
|
type SagaStepLog,
|
||
|
|
type SagaLog,
|
||
|
|
type SagaResult,
|
||
|
|
} from './SagaOrchestrator.js'
|