matrix-react-sdk
Version:
SDK for matrix.org using React
8 lines (7 loc) • 373 B
TypeScript
import { ActionPayload } from "../payloads";
import { Action } from "../actions";
import { TimelineRenderingType } from "../../contexts/RoomContext";
export interface FocusComposerPayload extends ActionPayload {
action: Action.FocusAComposer | Action.FocusEditMessageComposer | Action.FocusSendMessageComposer | "reply_to_event";
context?: TimelineRenderingType;
}