mirror of
https://github.com/arx-research/libhalo.git
synced 2026-05-09 03:00:08 -04:00
17 lines
539 B
JavaScript
17 lines
539 B
JavaScript
/**
|
|
* LibHaLo - Programmatically interact with HaLo tags from the web browser, mobile application or the desktop.
|
|
* Copyright by Arx Research, Inc., a Delaware corporation
|
|
* License: MIT
|
|
*/
|
|
|
|
const {execHaloCmdRN} = require("../drivers/nfc_manager");
|
|
|
|
/**
|
|
* The LibHaLo stable API. Please don't depend on the functions imported from anywhere else
|
|
* except the lib's index.js. The library's structure is subject to change in the next versions.
|
|
*/
|
|
module.exports = {
|
|
// for usage with react-native-nfc-manager
|
|
execHaloCmdRN
|
|
};
|