(block: DeepnoteBlock)
| 209 | } |
| 210 | |
| 211 | export function isInputDateRangeBlock(block: DeepnoteBlock): block is InputDateRangeBlock { |
| 212 | return block.type === 'input-date-range' |
| 213 | } |
| 214 | |
| 215 | export function isInputBlock(block: DeepnoteBlock): block is InputBlock { |
| 216 | return ( |
no outgoing calls
no test coverage detected