devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
10 lines (9 loc) • 437 B
JavaScript
import { DestinationType } from '../utils/destination-type';
import { DestinationSubDocument } from './destination-sub-document';
export class SectionHeaderFooterDestinationBase extends DestinationSubDocument {
get destinationType() { return DestinationType.SectionHeaderFooterDestinationBase; }
constructor(importer, section, subDocument) {
super(importer, subDocument);
this.section = section;
}
}