UNPKG

devexpress-richedit

Version:

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

13 lines (12 loc) 558 B
import { DestinationBase } from './base/destination'; import { StringValueDestination } from './base/string-value-destination'; import { DestinationType } from './utils/destination-type'; export declare class DocumentVariableDestination extends StringValueDestination { protected get destinationType(): DestinationType; name: string; ownValue: string; isNameRead: boolean; protected createEmptyClone(): StringValueDestination; afterPopRtfState(): void; nestedGroupFinished(nestedDestination: DestinationBase): void; }