UNPKG

@syncfusion/ej2-pdf

Version:

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

13 lines (12 loc) 401 B
import { _PdfDecodeStream } from '../decode-stream'; import { _PdfDictionary } from '../pdf-primitives'; /** * Provides a RunLength decoding stream that expands run length encoded data from the underlying stream. * * @private */ export declare class _PdfRunLengthStream extends _PdfDecodeStream { dict: _PdfDictionary; constructor(str: any, maybeLength?: number); readBlock(): void; }