devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
12 lines (11 loc) • 426 B
JavaScript
import { DestinationType } from '../utils/destination-type';
import { FieldSubDestination } from './field-sub-destination';
export class ResultFieldDestination extends FieldSubDestination {
get destinationType() { return DestinationType.ResultFieldDestination; }
constructor(importer) {
super(importer);
}
createInstance() {
return new ResultFieldDestination(this.importer);
}
}