* Removes any selection.
()
| 751 | * Removes any selection. |
| 752 | */ |
| 753 | deselect() { |
| 754 | return new Promise<void>((resolve, reject) => { |
| 755 | this._animator.deselect().then(() => { |
| 756 | this._details.clearSelection(); |
| 757 | resolve(); |
| 758 | }); |
| 759 | }); |
| 760 | } |
| 761 | |
| 762 | /** |
| 763 | * Gets the current selection. |
no test coverage detected