UNPKG

modaq

Version:

Quiz Bowl Reader using TypeScript, React, and MobX

15 lines (14 loc) 748 B
export declare const DefaultFontFamily = "Segoe UI, Times New Roman, -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, serif"; export declare class FontDialogState { fontFamily: string | undefined; fontSize: number | undefined; pronunciationGuideColor: string | undefined; textColor: string | undefined; constructor(fontFamily: string | undefined, fontSize: number | undefined, textColor: string | undefined, pronunciationGuideColor: string | undefined); resetPronunciationGuideColor(): void; resetTextColor(): void; setFontFamily(listedFont: string): void; setFontSize(fontSize: number): void; setPronunciationGuideColor(color: string): void; setTextColor(color: string): void; }