(blockType: string)
| 91 | * Checks if a block type is a container (loop or parallel) |
| 92 | */ |
| 93 | export function isContainerType(blockType: string): boolean { |
| 94 | return CONTAINER_BLOCK_TYPES.has(blockType) |
| 95 | } |
| 96 | |
| 97 | /** |
| 98 | * Checks if a block should be excluded from autolayout |
no outgoing calls
no test coverage detected