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 {
7272
7373export interface FilteringContainerProps {
7474 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 ;
8080}
8181
8282export class FilteringContainer extends React . Component < FilteringContainerProps > { }
You can’t perform that action at this time.
0 commit comments