UNPKG

@progress/kendo-angular-typography

Version:
25 lines (24 loc) 802 B
/**----------------------------------------------------------------------------------------- * 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 align. * * The possible values are: * * `left`—text-align: left * * `right`—text-align: right * * `center`—text-align: center * * `justify`—text-align: justify * */ export type TypographyTextAlign = 'left' | 'right' | 'center' | 'justify'; /** * @hidden */ export declare const typographyTextAlignOptions: { left: string; right: string; center: string; justify: string; };