UNPKG

capacitor-plugin-scanbot-sdk

Version:

Scanbot Document and Barcode Scanner SDK for Capacitor

14 lines 419 B
import { withSBErrorHandling } from '../types'; import { ScanbotSDKPlugin } from './Definitions'; /** * @internal * @hidden */ export const ScanbotPdfImageExtractorImpl = { async extractImageFiles(params) { return withSBErrorHandling(async () => { return (await ScanbotSDKPlugin.extractImageFilesFromPdf(params)).result; }); }, }; //# sourceMappingURL=PdfImageExtractorImpl.js.map