@progress/kendo-angular-typography
Version:
Kendo UI Angular Typography
24 lines (23 loc) • 799 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* Sets the text alignment.
*
* You can use these values:
* * `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;
};