pdf-lib
Version:
Create and modify PDF files with JavaScript
14 lines • 503 B
TypeScript
import ByteStream from "./ByteStream";
declare class BaseParser {
protected readonly bytes: ByteStream;
constructor(bytes: ByteStream);
protected parseRawInt(): number;
protected parseRawNumber(): number;
protected skipWhitespace(): void;
protected skipLine(): void;
protected skipComment(): boolean;
protected skipWhitespaceAndComments(): void;
protected matchKeyword(keyword: number[]): boolean;
}
export default BaseParser;
//# sourceMappingURL=BaseParser.d.ts.map