This commit is contained in:
velzie 2024-07-18 20:26:46 -04:00
commit 78116c2d0c
No known key found for this signature in database
GPG key ID: 048413F95F0DDE1F
3 changed files with 18 additions and 6 deletions

View file

@ -1,3 +1,5 @@
import BareClient from "@mercuryworkshop/bare-mux";
import "./scope.ts";
import "./window.ts";
import "./event.ts";
@ -21,5 +23,10 @@ declare global {
interface Window {
$s: any;
$sImport: any;
$client: BareClient;
}
}
const client = new BareClient();
export { client };