UNPKG

matrix-react-sdk

Version:
11 lines (10 loc) 379 B
import { ActionPayload } from "../payloads"; import { Action } from "../actions"; export interface UpdateFontSizeDeltaPayload extends ActionPayload { action: Action.UpdateFontSizeDelta; /** * The delta is added to the current font size. * The delta should be between {@link FontWatcher.MIN_DELTA} and {@link FontWatcher.MAX_DELTA}. */ delta: number; }