@progress/kendo-angular-editor
Version:
Kendo UI Editor for Angular
18 lines (17 loc) • 747 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* Represents data about a single font in the drop-down list for the font family.
*/
export interface FontFamilyItem {
/**
* The value of the [`font-family`](https://developer.mozilla.org/en-US/docs/Web/CSS/font-family) CSS property.
*/
fontName: string;
/**
* The text for the font name that will be displayed in the drop-down list.
*/
text: string;
}