@vue-pdf-viewer/viewer 1.6.0-beta.2 → 1.6.0-beta.3
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ComputedRef, MaybeRef, PropType, Reactive, Ref, ShallowRef } from 'vue';
|
|
1
|
+
import { ComponentPublicInstance, ComputedRef, MaybeRef, PropType, Reactive, Ref, ShallowRef } from 'vue';
|
|
2
2
|
import type { PageViewport } from 'pdfjs-dist';
|
|
3
3
|
import type { DocumentInitParameters, OnProgressParameters, PDFDataRangeTransport, TextContent, TypedArray, PDFPageProxy, PDFDocumentProxy } from 'pdfjs-dist/types/src/display/api';
|
|
4
4
|
import type { Metadata } from 'pdfjs-dist/types/src/display/metadata';
|
|
@@ -594,7 +594,7 @@ export interface RotateControl {
|
|
|
594
594
|
rotateCounterclockwise: () => void;
|
|
595
595
|
currentRotation: number;
|
|
596
596
|
}
|
|
597
|
-
export interface VPVInstance {
|
|
597
|
+
export interface VPVInstance extends ComponentPublicInstance {
|
|
598
598
|
printControl: Reactive<PrintControl> | undefined;
|
|
599
599
|
searchControl: SearchControl | undefined;
|
|
600
600
|
pageControl: PageControl | undefined;
|