devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
13 lines (12 loc) • 669 B
TypeScript
import { StyleBase } from '../../../../../../common/model/style-base';
import { XmlReader } from '../../../zip/xml-reader';
import { StyleManager } from '../../importers/styles-importer';
import { ElementHandlerTable } from '../destination';
import { StyleDestinationBase } from './style-destination-base';
export declare class StyleDestination extends StyleDestinationBase {
static readonly handlerTable: ElementHandlerTable;
get currImporter(): StyleManager<StyleBase<any>>;
protected get elementHandlerTable(): ElementHandlerTable;
processElementOpen(reader: XmlReader): Promise<void>;
processElementClose(reader: XmlReader): void;
}