je_nfc_sdk
Version:
A comprehensive React Native SDK for NFC-based device control and communication
12 lines • 425 B
TypeScript
export declare const NfcService: {
checkNfcSupport(): Promise<{
supported: boolean;
enabled: boolean;
}>;
scanTag(): Promise<import("react-native-nfc-manager").TagEvent | null>;
sendApdu(apdu: number[], timeoutMs?: number): Promise<number[]>;
test(): Promise<string>;
stop(): Promise<void>;
extractTagInfo(tag: any): Record<string, any>;
};
//# sourceMappingURL=NfcService.d.ts.map