UNPKG

@progress/kendo-angular-typography

Version:
44 lines (43 loc) 1.13 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * Applies the available Kendo theme class to the element. * The possible values are: * * `p` * * `h1` * * `h2` * * `h3` * * `h4` * * `h5` * * `h6` * * `code` * * `pre` * * The corresponding Kendo theme classes are: * * `p`— `k-paragraph` * * `h1`— `k-h1` * * `h2`— `k-h2` * * `h3`— `k-h3` * * `h4`— `k-h4` * * `h5`— `k-h5` * * `h6`— `k-h6` * * `code`— `k-code` * * `pre`— `k-pre` */ export type TypographyVariant = 'p' | 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'code' | 'pre'; /** * @hidden */ export declare const typographyVariantOptions: { p: string; h1: string; h2: string; h3: string; h4: string; h5: string; h6: string; code: string; pre: string; };