mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-14 18:12:09 +08:00
66 lines
2.2 KiB
TypeScript
66 lines
2.2 KiB
TypeScript
import { Font as FontBase } from './font-common';
|
|
export type { FontStyleType, FontWeightType, ParsedFont, FontVariationSettingsType } from './font-interfaces';
|
|
|
|
export const FONTS_BASE_PATH = '/fonts';
|
|
|
|
export declare class Font extends FontBase {
|
|
public static default: Font;
|
|
|
|
public fontFamily: string;
|
|
public fontStyle: FontStyleType;
|
|
public fontWeight: FontWeightType;
|
|
public fontSize: number;
|
|
public fontScale: number;
|
|
public fontVariationSettings?: FontVariationSettingsType[];
|
|
|
|
public isBold: boolean;
|
|
public isItalic: boolean;
|
|
|
|
constructor(family: string, size: number, style?: FontStyleType, weight?: FontWeightType, scale?: number, fontVariationSettings?: FontVariationSettings[]);
|
|
|
|
public getAndroidTypeface(): any /* android.graphics.Typeface */;
|
|
public getUIFont(defaultFont: any /* UIFont */): any /* UIFont */;
|
|
|
|
public withFontFamily(family: string): Font;
|
|
public withFontStyle(style: FontStyleType): Font;
|
|
public withFontWeight(weight: FontWeightType): Font;
|
|
public withFontSize(size: number): Font;
|
|
public withFontScale(scale: number): Font;
|
|
public withFontVariationSettings(variationSettings: FontVariationSettings[]): Font;
|
|
|
|
public static equals(value1: Font, value2: Font): boolean;
|
|
}
|
|
|
|
export namespace FontStyle {
|
|
export const NORMAL: 'normal';
|
|
export const ITALIC: 'italic';
|
|
export function isValid(value: any): boolean;
|
|
export function parse(value: string): FontStyleType;
|
|
}
|
|
|
|
export namespace FontWeight {
|
|
export const THIN: '100';
|
|
export const EXTRA_LIGHT: '200';
|
|
export const LIGHT: '300';
|
|
export const NORMAL: 'normal';
|
|
export const MEDIUM: '500';
|
|
export const SEMI_BOLD: '600';
|
|
export const BOLD: 'bold';
|
|
export const EXTRA_BOLD: '800';
|
|
export const BLACK: '900';
|
|
export function isValid(value: any): boolean;
|
|
export function parse(value: string): FontWeightType;
|
|
}
|
|
|
|
export namespace FontVariationSettings {
|
|
export function parse(fontVariationSettings: string): Array<FontVariationSettingsType> | null;
|
|
export function toString(fontVariationSettings: Array<FontVariationSettingsType> | null): string | null;
|
|
}
|
|
|
|
export function parseFont(fontValue: string): ParsedFont;
|
|
export function isFontWeightBold(fontWeight: FontWeightType): boolean;
|
|
|
|
export namespace ios {
|
|
export function registerFont(fontFile: string);
|
|
}
|