(block: DeepnoteBlock)
| 205 | } |
| 206 | |
| 207 | export function isInputDateBlock(block: DeepnoteBlock): block is InputDateBlock { |
| 208 | return block.type === 'input-date' |
| 209 | } |
| 210 | |
| 211 | export function isInputDateRangeBlock(block: DeepnoteBlock): block is InputDateRangeBlock { |
| 212 | return block.type === 'input-date-range' |
no outgoing calls
no test coverage detected