File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -72,11 +72,11 @@ interface GroupRendererProps {
72
72
73
73
export interface FilteringContainerProps {
74
74
children : ( nodes : Node [ ] ) => JSX . Element ;
75
- debouncer : ( func : ( ...p : any [ ] ) => any , timeout : number ) => void ;
76
- groups : { [ g : string ] : Group } ;
77
- selectedGroup : string ;
78
- groupRenderer : React . StatelessComponent < GroupRendererProps > | React . Component < GroupRendererProps > ;
79
- onSelectedGroupChange : ( c : string ) => void ;
75
+ debouncer ? : ( func : ( ...p : any [ ] ) => any , timeout : number ) => void ;
76
+ groups ? : { [ g : string ] : Group } ;
77
+ selectedGroup ? : string ;
78
+ groupRenderer ? : React . StatelessComponent < GroupRendererProps > | React . Component < GroupRendererProps > ;
79
+ onSelectedGroupChange ? : ( c : string ) => void ;
80
80
}
81
81
82
82
export class FilteringContainer extends React . Component < FilteringContainerProps > { }
You can’t perform that action at this time.
0 commit comments