devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
10 lines (9 loc) • 444 B
TypeScript
import { XmlReader } from '../../../zip/xml-reader';
import { ElementDestination, ElementHandlerTable } from '../destination';
export declare class AltChunkDestination extends ElementDestination {
static handlerTable: ElementHandlerTable;
relId: string;
protected get elementHandlerTable(): ElementHandlerTable;
processElementOpen(reader: XmlReader): Promise<void>;
processElementClose(_reader: XmlReader): void;
}