UNPKG

matrix-react-sdk

Version:
10 lines (9 loc) 284 B
import { ActionPayload } from "../payloads"; import { Action } from "../actions"; export interface ToggleRightPanelPayload extends ActionPayload { action: Action.ToggleRightPanel; /** * The type of room that the panel is toggled in. */ type: "group" | "room"; }