(block: DeepnoteBlock)
| 181 | |
| 182 | // Type guard functions |
| 183 | export function isInputTextBlock(block: DeepnoteBlock): block is InputTextBlock { |
| 184 | return block.type === 'input-text' |
| 185 | } |
| 186 | |
| 187 | export function isInputTextareaBlock(block: DeepnoteBlock): block is InputTextareaBlock { |
| 188 | return block.type === 'input-textarea' |
no outgoing calls
no test coverage detected