(block: DeepnoteBlock)
| 31 | * Executable blocks can have outputs and be executed by the runtime. |
| 32 | */ |
| 33 | export function isExecutableBlock(block: DeepnoteBlock): block is ExecutableBlock { |
| 34 | return executableBlockTypes.has(block.type) |
| 35 | } |
| 36 | |
| 37 | /** |
| 38 | * Checks if a block type string represents an executable block. |
no outgoing calls
no test coverage detected