Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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

...