* Deselects a value or an array of values. * @param values The values to deselect * @return Whether the selection changed as a result of this call
(...values: T[])
| 84 | * @return Whether the selection changed as a result of this call |
| 85 | */ |
| 86 | deselect(...values: T[]): boolean { |
| 87 | return this._deselect(values); |
| 88 | } |
| 89 | |
| 90 | /** |
| 91 | * Sets the selected values |