(block: Block, direction: 'export' | 'import')
| 15 | * @param direction - export for block to merge from, import for block to merge to |
| 16 | */ |
| 17 | export function isBlockConvertable(block: Block, direction: 'export' | 'import'): boolean { |
| 18 | return isToolConvertable(block.tool, direction); |
| 19 | } |
| 20 | |
| 21 | /** |
| 22 | * Checks that all the properties of the first block data exist in second block data with the same values. |
no test coverage detected