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) 396 B
import { DestinationSubDocument } from '../sub-document/destination-sub-document'; import { DestinationType } from '../utils/destination-type'; export class ShapeTextDestination extends DestinationSubDocument { get destinationType() { return DestinationType.ShapeTextDestination; } createClone() { return new ShapeTextDestination(this.importer, this.subDocument); } }