devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
9 lines (8 loc) • 408 B
TypeScript
import { RtfImportData } from '../../rtf-import-data';
import { HexContentDestination } from './hex-content-destination';
export declare abstract class HexStreamDestination extends HexContentDestination {
readonly dataStream: string[];
constructor(importer: RtfImportData, dataStream: string[]);
protected processBinCharCore(ch: string): void;
protected getNumberArray(): number[];
}