mirror of
https://github.com/arx-research/libhalo.git
synced 2026-01-09 13:18:04 -05:00
16 lines
475 B
TypeScript
16 lines
475 B
TypeScript
/**
|
|
* 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 * as all_exports from "./web_apis.js";
|
|
|
|
if (typeof window !== "undefined") {
|
|
Object.keys(all_exports).forEach((key) => {
|
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
// @ts-expect-error
|
|
window[key] = all_exports[key];
|
|
});
|
|
}
|