devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
17 lines (16 loc) • 901 B
TypeScript
import { XmlReader } from "../../../../../../../client/formats/docx/zip/xml-reader";
import { NoteProperties } from "../../../../../../../common/model/footnotes/footnote";
import { Data } from "../../../data";
import { ElementHandlerTable } from "../../destination";
import { NotePropertiesDestination } from "../note-properties-destination";
export declare class SectionLevelEndNotePropertiesDestination extends NotePropertiesDestination {
constructor(data: Data);
protected setProperties(notes: NoteProperties): void;
}
export declare class DocumentLevelEndNotePropertiesDestination extends NotePropertiesDestination {
static handlerTable: ElementHandlerTable;
constructor(data: Data);
protected get elementHandlerTable(): ElementHandlerTable;
protected setProperties(notes: NoteProperties): void;
processElementClose(reader: XmlReader): Promise<void>;
}