UNPKG

matrix-react-sdk

Version:
13 lines (12 loc) 446 B
import { ActionPayload } from "../payloads"; import { Action } from "../actions"; import { SettingLevel } from "../../settings/SettingLevel"; import { SettingValueType } from "../../settings/Settings"; export interface SettingUpdatedPayload extends ActionPayload { action: Action.SettingUpdated; settingName: string; roomId: string | null; level: SettingLevel; newValueAtLevel: SettingLevel; newValue: SettingValueType; }