File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
src/components/views/messages Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -37,11 +37,12 @@ import { MediaEventHelper } from "../../../utils/MediaEventHelper";
3737import DownloadActionButton from "./DownloadActionButton" ;
3838import SettingsStore from '../../../settings/SettingsStore' ;
3939import { RoomPermalinkCreator } from '../../../utils/permalinks/Permalinks' ;
40+ import ReplyThread from '../elements/ReplyThread' ;
4041
4142interface IOptionsButtonProps {
4243 mxEvent : MatrixEvent ;
4344 getTile : ( ) => any ; // TODO: FIXME, haven't figured out what the return type is here
44- getReplyThread : ( ) => any ; // TODO: FIXME, haven't figured out what the return type is here
45+ getReplyThread : ( ) => ReplyThread ;
4546 permalinkCreator : RoomPermalinkCreator ;
4647 onFocusChange : ( menuDisplayed : boolean ) => void ;
4748}
@@ -130,7 +131,7 @@ interface IMessageActionBarProps {
130131 reactions ?: any ;
131132 permalinkCreator ?: RoomPermalinkCreator ;
132133 getTile : ( ) => any ; // TODO: FIXME, haven't figured out what the return type is here
133- getReplyThread ?: ( ) => JSX . Element ;
134+ getReplyThread ?: ( ) => ReplyThread ;
134135 onFocusChange ?: ( menuDisplayed : boolean ) => void ;
135136}
136137
You can’t perform that action at this time.
0 commit comments