UNPKG

react-native-scanbot-barcode-scanner-sdk

Version:

Scanbot Barcode Scanner SDK React Native Plugin for Android and iOS

14 lines (11 loc) 237 B
export type Status = 'OK' | 'CANCELED'; /** Compress format */ export type CompressFormat = /** JPEG image format */ | 'JPEG' /** PNG image format */ | 'PNG'; export interface ResultWrapper<T> { status: Status; data?: T; }