UNPKG

matrix-react-sdk

Version:
10 lines (9 loc) 256 B
import { ActionPayload } from "../payloads"; import { Action } from "../actions"; export interface UpdateFontSizePayload extends ActionPayload { action: Action.UpdateFontSize; /** * The font size to set the root to */ size: number; }