File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/client-search/src/types Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -321,7 +321,7 @@ export type Settings = {
321
321
/**
322
322
* pinned order of facet lists
323
323
*/
324
- readonly order : readonly string [ ] ;
324
+ readonly order ? : readonly string [ ] ;
325
325
} ;
326
326
/**
327
327
* the ordering of facet values, within an individual list
@@ -331,14 +331,14 @@ export type Settings = {
331
331
/**
332
332
* pinned order of facet values
333
333
*/
334
- readonly order : readonly string [ ] ;
334
+ readonly order ? : readonly string [ ] ;
335
335
/**
336
336
* How to display the remaining items.
337
337
* - facet count (descending)
338
338
* - alphabetical (ascending)
339
339
* - hidden (show only pinned values)
340
340
*/
341
- readonly sortRemainingBy : 'count' | 'alpha' | 'hidden' ;
341
+ readonly sortRemainingBy ? : 'count' | 'alpha' | 'hidden' ;
342
342
} ;
343
343
} ;
344
344
} ;
You can’t perform that action at this time.
0 commit comments