tsimport { getGlobal, setGlobal } from "reactn";
const movidea = {
setGlobal,
getGlobal,
};
const debug = {};
declare global {
interface Window {
debug: any;
movidea: typeof movidea;
}
}
export const initializeGlobalVariables = () => {
window.movidea = movidea;
window.debug = debug;
};