UNPKG

matrix-react-sdk

Version:
18 lines (17 loc) 483 B
import { ActionPayload } from "../payloads"; import { Action } from "../actions"; export interface UpdateSystemFontPayload extends ActionPayload { action: Action.UpdateSystemFont; /** * Specify whether to use the bundled emoji font or the system font */ useBundledEmojiFont: boolean; /** * Specify whether to use a system font or the stylesheet font */ useSystemFont: boolean; /** * The system font to use */ font: string; }