UNPKG

devexpress-richedit

Version:

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

11 lines (10 loc) 477 B
import { DestinationType } from '../utils/destination-type'; import { ShapePropertiesDestinationBase } from './shape-properties-destination-base'; export class ShapeInstanceDestination extends ShapePropertiesDestinationBase { get destinationType() { return DestinationType.ShapeInstanceDestination; } createClone() { return new ShapeInstanceDestination(this.importer, this.shapeProperties); } nestedGroupFinished(_nestedDestination) { } }