* Removes any selection.
()
| 9907 | /** |
| 9908 | * Removes any selection. |
| 9909 | */ deselect() { |
| 9910 | return new Promise((resolve, reject)=>{ |
| 9911 | this._animator.deselect().then(()=>{ |
| 9912 | this._details.clearSelection(); |
| 9913 | resolve(); |
| 9914 | }); |
| 9915 | }); |
| 9916 | } |
| 9917 | /** |
| 9918 | * Gets the current selection. |
| 9919 | */ getSelection() { |
no test coverage detected