UNPKG

@syncfusion/ej2-pdf

Version:

Feature-rich JavaScript PDF library with built-in support for loading and manipulating PDF document.

37 lines (36 loc) 1.18 kB
import { _PdfAbstractSyntaxElement } from './abstract-syntax'; /** * Represents an internal embedded data value that stores identification information * along with its corresponding raw byte content. * * @private */ export declare class _PdfEmbeddedDataValue { /** * Represents the internal identification element associated with the embedded data value. * * @private */ _identification: _PdfAbstractSyntaxElement; /** * Represents the internal byte sequence containing the embedded data value. * * @private */ _dataValue: Uint8Array; constructor(identification: _PdfAbstractSyntaxElement, dataValue: Uint8Array); /** * Converts the internal embedded data value into a readable textual representation. * * @private * @returns {string} A formatted string describing the identification and hexadecimal byte content. */ _toString(): string; /** * Converts the internal embedded data value into a JSON compatible representation. * * @private * @returns {any} A JSON object containing the identification and encoded data value. */ _toJson(): any; }