@progress/kendo-angular-typography
Version:
Kendo UI Angular Typography
22 lines (21 loc) • 802 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* Specifies the font weight.
*
* The possible values are:
* * `light`—font-weight: 300
* * `normal`—font-weight: 400
* * `bold` For Default and Bootstrap themes—font-weight: 700. For Material theme—font-weight: 500.
*/
export type TypographyFontWeight = 'light' | 'normal' | 'bold';
/**
* @hidden
*/
export declare const typographyFontWeightOptions: {
light: string;
normal: string;
bold: string;
};