* Coerces a value into an array representing a listbox selection. * @param value The value to coerce * @return An array
(value: readonly T[])
| 1033 | * @return An array |
| 1034 | */ |
| 1035 | private _coerceValue(value: readonly T[]) { |
| 1036 | return value == null ? [] : coerceArray(value); |
| 1037 | } |
| 1038 | |
| 1039 | /** |
| 1040 | * Get the sublist of values that do not represent valid option values in this listbox. |
no test coverage detected