UNPKG

@react-native-oh-tpl/react-native-qr-decode-image-camera

Version:
17 lines (14 loc) 548 B
/* * Copyright (c) 2024 Huawei Device Co., Ltd. All rights reserved * Use of this source code is governed by a MIT license that can be * found in the LICENSE file. */ import type { TurboModule } from 'react-native/Libraries/TurboModule/RCTExport'; import { TurboModuleRegistry } from 'react-native'; interface IPath { uri:string; } export interface Spec extends TurboModule { QRreader: (path:IPath) => Promise<any>; } export default TurboModuleRegistry.get<Spec>('QrDecodeImageCameraNativeModule') as Spec | null;