moved definitions to types lib

This commit is contained in:
Peter Clement 2024-12-20 14:34:16 +00:00
parent de8c8f5d68
commit 9003be49b3
1 changed files with 6 additions and 0 deletions

View File

@ -3,3 +3,9 @@ export interface BranchPath {
branchIdx: number branchIdx: number
branchStepId: string branchStepId: string
} }
export interface BlockDefinitions {
TRIGGER: Record<string, any>
CREATABLE_TRIGGER: Record<string, any>
ACTION: Record<string, any>
}