devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
12 lines (11 loc) • 511 B
JavaScript
import { SkipDestination } from '../base/skip-destination';
import { DestinationType } from '../utils/destination-type';
export class SkipNestedTableDestination extends SkipDestination {
get destinationType() { return DestinationType.SkipNestedTableDestination; }
static onParKeyword(importer, _parameterValue, _hasParameter) {
importer.destination = importer.createDefaultDestination();
}
createClone() {
return new SkipNestedTableDestination(this.importer);
}
}