UNPKG

@syncfusion/ej2-pdf

Version:

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

12 lines (11 loc) 428 B
import { _PdfBaseStream } from './base-stream'; import { _PdfDecodeStream } from './decode-stream'; import { _Cipher } from './security/encryptor'; export declare class _PdfDecryptStream extends _PdfDecodeStream { readonly _chunkSize: number; _initialized: boolean; _nextChunk: Uint8Array; _cipher: _Cipher; constructor(stream: _PdfBaseStream, maybeLength: number, cipher: _Cipher); readBlock(): void; }