document-scanner-vue
Version:
Vue 3 Document Scanner with OpenCV.js - Mobile optimized with camera/gallery support
15 lines • 560 B
TypeScript
import type { Ref, ComputedRef } from 'vue';
export interface KeyboardNavigationOptions {
showFullscreenScanner: Ref<boolean>;
isProcessingPdf: Ref<boolean>;
currentDisplayPage: Ref<any>;
pageManager: {
currentPage: Ref<any>;
pages: ComputedRef<readonly any[]>;
selectPage: (pageId: string) => void;
};
onCloseScanner: () => void;
onDiscardProcessedImage: () => void;
}
export declare function useKeyboardNavigation(options: KeyboardNavigationOptions): {};
//# sourceMappingURL=useKeyboardNavigation.d.ts.map