@kopjra/pdf-sentinel 1.8.0 → 1.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -58,6 +58,7 @@ export declare function usePdfSentinel({ pdf, name, hideToolbar, onDocumentLoade
58
58
  totalPages: number | null;
59
59
  loadingPdf: boolean;
60
60
  loadingError: boolean;
61
+ initializedDocument: ArrayBuffer | null;
61
62
  engine: import('@embedpdf/models').PdfEngine<Blob> | null;
62
63
  closedPdf: boolean;
63
64
  helpers: {
@@ -66,6 +67,5 @@ export declare function usePdfSentinel({ pdf, name, hideToolbar, onDocumentLoade
66
67
  resetZoom: () => void;
67
68
  scrollToPage: (pageNumber: number) => void;
68
69
  download: () => void;
69
- getInitializedDocumentBuffer: () => Promise<ArrayBuffer | undefined>;
70
70
  };
71
71
  };