From c16034b8f58bd06b95526687fd9c782899e48c32 Mon Sep 17 00:00:00 2001 From: Junyi Date: Fri, 22 Sep 2023 13:56:33 +0800 Subject: [PATCH] refactor(plugin-workflow): add client exports (#2702) --- packages/plugins/@nocobase/plugin-workflow/src/client/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/plugins/@nocobase/plugin-workflow/src/client/index.tsx b/packages/plugins/@nocobase/plugin-workflow/src/client/index.tsx index 5049f93e7..5279272be 100644 --- a/packages/plugins/@nocobase/plugin-workflow/src/client/index.tsx +++ b/packages/plugins/@nocobase/plugin-workflow/src/client/index.tsx @@ -1,7 +1,7 @@ export * from './Branch'; export * from './FlowContext'; export * from './nodes'; -export { triggers } from './triggers'; +export { triggers, getTriggersOptions } from './triggers'; export { useWorkflowVariableOptions } from './variable'; import { Plugin } from '@nocobase/client';