Files
libhalo/core/src.ts/web/web_apis.js
2024-07-14 19:45:24 +02:00

28 lines
594 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
*/
import {
arr2hex, hex2arr
} from "../halo/util.js";
import {__runTestSuite} from "../halo/tests.js";
import {haloCreateWs} from "./web_utils.js";
// libhalo web APIs
export * from '../api/common.js';
export * from '../api/web.js';
export {
// extra utilities
arr2hex,
hex2arr,
// extra util for bridge demo
haloCreateWs,
// internal, do not use
__runTestSuite
};