Initial commit

This commit is contained in:
David Snelling 2025-06-23 14:46:26 -07:00
commit 7b53e80217
81 changed files with 39132 additions and 0 deletions

15
src/global.d.ts vendored Normal file
View file

@ -0,0 +1,15 @@
/**
* Global type declarations for Brainy
*/
// Extend the globalThis interface to include the __ENV__ property
declare global {
var __ENV__: {
isBrowser: boolean;
isNode: string | false;
isServerless: boolean;
};
}
// This export is needed to make this file a module
export {};