react-native-zebra-rfid-barcode-ef-tech
Version:
This React Native module enables seamless integration with Zebra RFID readers and barcode scanners.
16 lines • 553 B
TypeScript
import { NativeEventEmitter } from 'react-native';
export declare const getAllDevices: () => Promise<string[]>;
export declare const connectToDevice: (deviceName: string) => any;
export interface ZebraResultPayload {
data: string;
}
export interface ZebraRfidResultPayload {
data: string[];
}
export declare const ZebraEventEmitter: NativeEventEmitter;
export declare enum ZebraEvent {
ON_DEVICE_CONNECTED = "onZebraConnected",
ON_RFID = "onZebraRFIDReaded",
ON_BARCODE = "onZebraBarcodeScanned"
}
//# sourceMappingURL=index.d.ts.map