@syncfusion/ej2-pdf
Version:
Feature-rich JavaScript PDF library with built-in support for loading and manipulating PDF document.
13 lines (12 loc) • 352 B
TypeScript
import { _PdfDecodeStream } from '../decode-stream';
/**
* Decodes ASCII hexadecimal encoded data from an underlying byte stream into binary content.
*
* @private
*/
export declare class _PdfAsciiHexStream extends _PdfDecodeStream {
stream: any;
firstDigit: number;
constructor(str: any, maybeLength?: number);
readBlock(): void;
}