73 lines
2.3 KiB
TypeScript
73 lines
2.3 KiB
TypeScript
import type { IFontWeight } from '@fluentui/merge-styles';
|
|
export declare namespace LocalizedFontNames {
|
|
const Arabic = "Segoe UI Web (Arabic)";
|
|
const Cyrillic = "Segoe UI Web (Cyrillic)";
|
|
const EastEuropean = "Segoe UI Web (East European)";
|
|
const Greek = "Segoe UI Web (Greek)";
|
|
const Hebrew = "Segoe UI Web (Hebrew)";
|
|
const Thai = "Leelawadee UI Web";
|
|
const Vietnamese = "Segoe UI Web (Vietnamese)";
|
|
const WestEuropean = "Segoe UI Web (West European)";
|
|
const Selawik = "Selawik Web";
|
|
const Armenian = "Segoe UI Web (Armenian)";
|
|
const Georgian = "Segoe UI Web (Georgian)";
|
|
}
|
|
export declare namespace LocalizedFontFamilies {
|
|
const Arabic: string;
|
|
const ChineseSimplified = "'Microsoft Yahei UI', Verdana, Simsun";
|
|
const ChineseTraditional = "'Microsoft Jhenghei UI', Pmingliu";
|
|
const Cyrillic: string;
|
|
const EastEuropean: string;
|
|
const Greek: string;
|
|
const Hebrew: string;
|
|
const Hindi = "'Nirmala UI'";
|
|
const Japanese = "'Yu Gothic UI', 'Meiryo UI', Meiryo, 'MS Pgothic', Osaka";
|
|
const Korean = "'Malgun Gothic', Gulim";
|
|
const Selawik: string;
|
|
const Thai = "'Leelawadee UI Web', 'Kmer UI'";
|
|
const Vietnamese: string;
|
|
const WestEuropean: string;
|
|
const Armenian: string;
|
|
const Georgian: string;
|
|
}
|
|
export declare namespace FontSizes {
|
|
const size10 = "10px";
|
|
const size12 = "12px";
|
|
const size14 = "14px";
|
|
const size16 = "16px";
|
|
const size18 = "18px";
|
|
const size20 = "20px";
|
|
const size24 = "24px";
|
|
const size28 = "28px";
|
|
const size32 = "32px";
|
|
const size42 = "42px";
|
|
const size68 = "68px";
|
|
const mini: string;
|
|
const xSmall: string;
|
|
const small: string;
|
|
const smallPlus: string;
|
|
const medium: string;
|
|
const mediumPlus: string;
|
|
const icon: string;
|
|
const large: string;
|
|
const xLarge: string;
|
|
const xLargePlus: string;
|
|
const xxLarge: string;
|
|
const xxLargePlus: string;
|
|
const superLarge: string;
|
|
const mega: string;
|
|
}
|
|
export declare namespace FontWeights {
|
|
const light: IFontWeight;
|
|
const semilight: IFontWeight;
|
|
const regular: IFontWeight;
|
|
const semibold: IFontWeight;
|
|
const bold: IFontWeight;
|
|
}
|
|
export declare namespace IconFontSizes {
|
|
const xSmall: string;
|
|
const small: string;
|
|
const medium: string;
|
|
const large: string;
|
|
}
|