MCPcopy Index your code
hub / github.com/deepnote/deepnote / isExecutableBlock

Function isExecutableBlock

packages/blocks/src/blocks/executable-blocks.ts:33–35  ·  view source on GitHub ↗
(block: DeepnoteBlock)

Source from the content-addressed store, hash-verified

31 * Executable blocks can have outputs and be executed by the runtime.
32 */
33export 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.

Callers 3

runProjectMethod · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected