@returns {import('./jsmind.node.js').Node|null}
()
| 796 | } |
| 797 | /** @returns {import('./jsmind.node.js').Node|null} */ |
| 798 | get_selected_node() { |
| 799 | if (!!this.mind) { |
| 800 | return this.mind.selected; |
| 801 | } else { |
| 802 | return null; |
| 803 | } |
| 804 | } |
| 805 | /** clear selection */ |
| 806 | select_clear() { |
| 807 | if (!!this.mind) { |
no outgoing calls
no test coverage detected