* Sets the selected values * @param values The new selected values * @return Whether the selection changed as a result of this call
(...values: T[])
| 93 | * @return Whether the selection changed as a result of this call |
| 94 | */ |
| 95 | setSelection(...values: T[]): boolean { |
| 96 | return this._setSelection(values); |
| 97 | } |
| 98 | |
| 99 | /** |
| 100 | * Toggles a value between selected and deselected. |
no test coverage detected