UNPKG

matrix-react-sdk

Version:
14 lines (13 loc) 409 B
import { ActionPayload } from "../payloads"; import { Action } from "../actions"; export interface OpenToTabPayload extends ActionPayload { action: Action.ViewUserSettings | string; /** * The tab ID to open in the settings view to start, if possible. */ initialTabId?: string; /** * Additional properties to pass to the settings view. */ props?: Record<string, any>; }