We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c514ca commit 2908cc4Copy full SHA for 2908cc4
src/lib/models/Models.ts
@@ -195,23 +195,20 @@ export interface FacetOption {
195
name: string;
196
displayName: string;
197
count?: number;
198
+ selected?: boolean;
199
}
200
201
export interface FacetGroup {
202
203
204
205
children: FacetOption[];
206
207
208
-export interface SelectedFacetOption extends FacetOption {
- selected: boolean;
209
-}
210
-
211
export interface SelectedFacetGroup extends Omit<FacetGroup, 'children'> {
212
213
children: {
214
- [key: string]: SelectedFacetOption;
+ [key: string]: FacetOption;
215
};
216
217
0 commit comments