@nativescript/core
Version:
A JavaScript library providing an easy to use api for interacting with iOS and Android platform APIs.
16 lines (15 loc) • 512 B
TypeScript
export type FontStyleType = 'normal' | 'italic';
export type FontWeightType = '100' | '200' | '300' | 'normal' | '400' | '500' | '600' | 'bold' | '700' | '800' | '900' | number;
export interface ParsedFont {
fontStyle?: FontStyleType;
fontVariant?: string;
fontWeight?: FontWeightType;
lineHeight?: string;
fontSize?: string;
fontFamily?: string;
fontVariationSettings?: FontVariationSettingsType[];
}
export type FontVariationSettingsType = {
axis: string;
value: number;
};