Update return type for getThread prop

This commit is contained in:
Germain Souquet 2021-09-06 16:18:35 +01:00
parent 4b96a81bbe
commit 01d61786f1

View file

@ -37,11 +37,12 @@ import { MediaEventHelper } from "../../../utils/MediaEventHelper";
import DownloadActionButton from "./DownloadActionButton"; import DownloadActionButton from "./DownloadActionButton";
import SettingsStore from '../../../settings/SettingsStore'; import SettingsStore from '../../../settings/SettingsStore';
import { RoomPermalinkCreator } from '../../../utils/permalinks/Permalinks'; import { RoomPermalinkCreator } from '../../../utils/permalinks/Permalinks';
import ReplyThread from '../elements/ReplyThread';
interface IOptionsButtonProps { interface IOptionsButtonProps {
mxEvent: MatrixEvent; mxEvent: MatrixEvent;
getTile: () => any; // TODO: FIXME, haven't figured out what the return type is here getTile: () => any; // TODO: FIXME, haven't figured out what the return type is here
getReplyThread: () => any; // TODO: FIXME, haven't figured out what the return type is here getReplyThread: () => ReplyThread;
permalinkCreator: RoomPermalinkCreator; permalinkCreator: RoomPermalinkCreator;
onFocusChange: (menuDisplayed: boolean) => void; onFocusChange: (menuDisplayed: boolean) => void;
} }
@ -130,7 +131,7 @@ interface IMessageActionBarProps {
reactions?: any; reactions?: any;
permalinkCreator?: RoomPermalinkCreator; permalinkCreator?: RoomPermalinkCreator;
getTile: () => any; // TODO: FIXME, haven't figured out what the return type is here getTile: () => any; // TODO: FIXME, haven't figured out what the return type is here
getReplyThread?: () => JSX.Element; getReplyThread?: () => ReplyThread;
onFocusChange?: (menuDisplayed: boolean) => void; onFocusChange?: (menuDisplayed: boolean) => void;
} }