UNPKG

devexpress-richedit

Version:

DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.

14 lines (13 loc) 627 B
import { DestinationType } from '../utils/destination-type'; import { DestinationBase } from './destination'; import { StringValueDestinationBase } from './string-value-destination-base'; export declare abstract class UnicodeStringValueDestination extends StringValueDestinationBase { protected get destinationType(): DestinationType; _value: string[]; static emptyChar: string; static lowbar: string; get value(): string; protected processCharCore(ch: string): void; protected createClone(): DestinationBase; protected abstract createEmptyClone(): UnicodeStringValueDestination; }