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