UNPKG

devexpress-richedit

Version:

DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.

10 lines (9 loc) 664 B
import { ICharacterPropertyDescriptor } from '../../../../../../../common/model/character/character-property-descriptor'; import { FontInfo } from '../../../../../../../common/model/fonts/font-info'; import { XmlReader } from '../../../../zip/xml-reader'; import { CharacterFormattingLeafElementDestination } from '../character-formatting-leaf-element-destination'; export declare class FontNameDestination extends CharacterFormattingLeafElementDestination<FontInfo> { processElementOpen(reader: XmlReader): Promise<void>; protected getDescriptor(): ICharacterPropertyDescriptor<FontInfo>; protected readFontName(reader: XmlReader): string; }