//
//  ScanbotSDKCapacitorPlugin.swift
//  Plugin
//
//  Copyright © 2024 Scanbot SDK GmbH. All rights reserved.
//
import Capacitor
import ScanbotSDKNativeWrapper

extension ScanbotSDKCapacitorPlugin {
  
  @objc func straightenDocumentImage(_ call: CAPPluginCall) {
    SBDDocumentEnhancer.straightenImage(
      operationConfig: call.data,
      resultDelegate: call.delegate
    )
  }
  
}
