(block: DeepnoteBlock)
| 189 | } |
| 190 | |
| 191 | export function isInputCheckboxBlock(block: DeepnoteBlock): block is InputCheckboxBlock { |
| 192 | return block.type === 'input-checkbox' |
| 193 | } |
| 194 | |
| 195 | export function isInputSelectBlock(block: DeepnoteBlock): block is InputSelectBlock { |
| 196 | return block.type === 'input-select' |
no outgoing calls
no test coverage detected