devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
12 lines (11 loc) • 659 B
TypeScript
import { CompatSettings } from '../../../../../../common/model/compat-settings';
import { XmlReader } from '../../../zip/xml-reader';
import { ElementDestination, ElementHandlerTable, LeafElementDestination } from '../destination';
export declare class DocumentSettingsCompatDestination extends ElementDestination {
static handlerTable: ElementHandlerTable;
protected get elementHandlerTable(): ElementHandlerTable;
}
export declare class DocumentSettingsCompatSettingDestination extends LeafElementDestination {
processElementOpen(reader: XmlReader): Promise<void>;
processSetting(reader: XmlReader, prop: CompatSettings): void;
}