UNPKG

devexpress-richedit

Version:

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

16 lines (15 loc) 788 B
import { SubDocument } from '../../../../../../../common/model/sub-document'; import { XmlReader } from '../../../../zip/xml-reader'; import { LeafElementDestination } from '../../destination'; export declare abstract class HeaderFooterReferenceDestinationBase extends LeafElementDestination { processElementOpen(reader: XmlReader): Promise<void>; processElementClose(_reader: XmlReader): void; protected abstract isHeader(): boolean; protected createSubDocument(type: string): SubDocument; } export declare class FooterReferenceDestination extends HeaderFooterReferenceDestinationBase { protected isHeader(): boolean; } export declare class HeaderReferenceDestination extends HeaderFooterReferenceDestinationBase { protected isHeader(): boolean; }