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) 451 B
import { DestinationType } from '../utils/destination-type'; import { DestinationSubDocument } from './destination-sub-document'; export class SectionHeaderFooterDestinationBase extends DestinationSubDocument { get destinationType() { return DestinationType.SectionHeaderFooterDestinationBase; } section; constructor(importer, section, subDocument) { super(importer, subDocument); this.section = section; } }