UNPKG

devexpress-richedit

Version:

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

12 lines (11 loc) 588 B
import { DestinationBase } from '../base/destination'; import { StringValueDestinationBase } from '../base/string-value-destination-base'; import { DestinationType } from '../utils/destination-type'; export declare abstract class HyperlinkPropertyValueDestination extends StringValueDestinationBase { protected get destinationType(): DestinationType; _value: string[]; get value(): string; protected processCharCore(ch: string): void; protected createClone(): DestinationBase; protected abstract createEmptyClone(): HyperlinkPropertyValueDestination; }