(block: DeepnoteBlock)
| 201 | } |
| 202 | |
| 203 | export function isInputFileBlock(block: DeepnoteBlock): block is InputFileBlock { |
| 204 | return block.type === 'input-file' |
| 205 | } |
| 206 | |
| 207 | export function isInputDateBlock(block: DeepnoteBlock): block is InputDateBlock { |
| 208 | return block.type === 'input-date' |
no outgoing calls
no test coverage detected