devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
11 lines (10 loc) • 543 B
TypeScript
import { ControlCharTranslatorTable, DestinationBase, KeywordTranslatorTable } from './base/destination';
import { DestinationType } from './utils/destination-type';
export declare class DestinationRevisionAuthorTable extends DestinationBase {
protected get destinationType(): DestinationType;
protected get controlCharHT(): ControlCharTranslatorTable;
protected get keywordHT(): KeywordTranslatorTable;
author: string;
protected processCharCore(ch: string): void;
protected createClone(): DestinationBase;
}