* Returns the Block by passed id * * @param id - id of block to get * @returns {Block}
(id)
| 676 | * @returns {Block} |
| 677 | */ |
| 678 | public getBlockById(id): Block | undefined { |
| 679 | return this._blocks.array.find(block => block.id === id); |
| 680 | } |
| 681 | |
| 682 | /** |
| 683 | * Get Block instance by html element |
no test coverage detected