mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-14 18:12:09 +08:00
10 lines
312 B
TypeScript
10 lines
312 B
TypeScript
export const VALID_FONT_SCALES: number[];
|
|
export function getCurrentFontScale(): number;
|
|
export enum FontScaleCategory {
|
|
ExtraSmall = 'extra-small',
|
|
Medium = 'medium',
|
|
ExtraLarge = 'extra-large',
|
|
}
|
|
export function getFontScaleCategory(): FontScaleCategory;
|
|
export function initAccessibilityFontScale(): void;
|