matrix-react-sdk
Version:
SDK for matrix.org using React
14 lines (13 loc) • 409 B
TypeScript
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>;
}