(block: DeepnoteBlock)
| 185 | } |
| 186 | |
| 187 | export function isInputTextareaBlock(block: DeepnoteBlock): block is InputTextareaBlock { |
| 188 | return block.type === 'input-textarea' |
| 189 | } |
| 190 | |
| 191 | export function isInputCheckboxBlock(block: DeepnoteBlock): block is InputCheckboxBlock { |
| 192 | return block.type === 'input-checkbox' |
no outgoing calls
no test coverage detected