From 9003be49b38865425d7a3fbcbcf2068ccf7dd870 Mon Sep 17 00:00:00 2001 From: Peter Clement Date: Fri, 20 Dec 2024 14:34:16 +0000 Subject: [PATCH] moved definitions to types lib --- packages/types/src/ui/stores/automations.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/packages/types/src/ui/stores/automations.ts b/packages/types/src/ui/stores/automations.ts index 81e669ba4a..60275a0f4d 100644 --- a/packages/types/src/ui/stores/automations.ts +++ b/packages/types/src/ui/stores/automations.ts @@ -3,3 +3,9 @@ export interface BranchPath { branchIdx: number branchStepId: string } + +export interface BlockDefinitions { + TRIGGER: Record + CREATABLE_TRIGGER: Record + ACTION: Record +}