matrix-react-sdk
Version:
SDK for matrix.org using React
14 lines (13 loc) • 356 B
TypeScript
import IWatcher from "./Watcher";
export declare class FontWatcher implements IWatcher {
static readonly MIN_SIZE = 8;
static readonly MAX_SIZE = 15;
static readonly SIZE_DIFF = 5;
private dispatcherRef;
constructor();
start(): void;
stop(): void;
private onAction;
private setRootFontSize;
private setSystemFont;
}