devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
12 lines (11 loc) • 562 B
TypeScript
import { DestinationType } from '../utils/destination-type';
import { DestinationBase } from './destination';
import { StringValueDestinationBase } from './string-value-destination-base';
export declare abstract class StringValueDestination extends StringValueDestinationBase {
protected get destinationType(): DestinationType;
protected _value: string;
get value(): string;
protected processCharCore(ch: string): void;
protected createClone(): DestinationBase;
protected abstract createEmptyClone(): StringValueDestination;
}