(blockType: string | undefined)
| 358 | } |
| 359 | |
| 360 | export function isAnnotationOnlyBlock(blockType: string | undefined): boolean { |
| 361 | return blockType === BlockType.NOTE |
| 362 | } |
| 363 | |
| 364 | export function supportsHandles(blockType: string | undefined): boolean { |
| 365 | return !isAnnotationOnlyBlock(blockType) |
no outgoing calls
no test coverage detected