Newer
Older
import { IGetMetaResponse } from "./types";
declare type SealCoords = {
[key: string]: {
x: number;
y: number;
};
};
declare class PDFparser {
readonly document: any;
readonly config: any;
constructor(document: Buffer);
getPDFMeta: () => Promise<IGetMetaResponse>;
insertQrCode: (imgBytes: ArrayBuffer, url: string, coords: SealCoords, scaleFactor: number) => Promise<ArrayBuffer>;