UNPKG

devexpress-richedit

Version:

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

9 lines (8 loc) 458 B
import { DestinationType } from '../utils/destination-type'; import { SectionHeaderFooterDestinationBase } from './section-header-footer-destination-base'; export class SectionPageHeaderDestination extends SectionHeaderFooterDestinationBase { get destinationType() { return DestinationType.SectionPageHeaderDestination; } createClone() { return new SectionPageHeaderDestination(this.importer, this.section, this.subDocument); } }