UNPKG

devexpress-richedit

Version:

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

13 lines (12 loc) 664 B
import { HyperlinkInfo } from '../../../../../../common/model/fields/field'; import { XmlReader } from '../../../zip/xml-reader'; import { ElementHandlerTable } from '../destination'; import { FieldDestinationBase } from './field-destination-base'; export declare class HyperlinkDestination extends FieldDestinationBase { protected get elementHandlerTable(): ElementHandlerTable; static handlerTable: ElementHandlerTable; private static attributeHandlerTable; processElementOpen(reader: XmlReader): Promise<void>; processElementClose(_reader: XmlReader): void; protected createHyperlinkInfo(reader: XmlReader): HyperlinkInfo; }