UNPKG

devexpress-richedit

Version:

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

9 lines (8 loc) 436 B
import { DestinationType } from '../utils/destination-type'; import { HyperlinkPropertyValueDestination } from './hyperlink-property-value-destination'; export class HyperlinkSourceValueDestination extends HyperlinkPropertyValueDestination { get destinationType() { return DestinationType.HyperlinkSourceValueDestination; } createEmptyClone() { return new HyperlinkSourceValueDestination(this.importer); } }