...
Code Block | ||
---|---|---|
| ||
interface FacetValueWithStateCheckboxListFacetValue extends FacetValue { visible: boolean; toggled: boolean; hasChildren: boolean; children?: Array<FacetValueWithState>Array<CheckboxListFacetValue>; } |
Code Block | ||
---|---|---|
| ||
{ id: string; field: string | undefined; values: Array<FacetValueWithState>Array<CheckboxListFacetValue>; showToggle: boolean; toggleText: string; expanded: boolean | undefined; } |
...