//#region src/utils/globals.d.ts declare const globalVar: any; declare function createGlobal(key: string, init: () => T): T; /** * Like createGlobal, but if the asynchronous initialization fails, the global will be reset and recomputed on the next * invocation. */ declare function createGlobalAsync(key: string, init: () => Promise): Promise; declare function getGlobal(key: string): any; declare function setGlobal(key: string, value: any): void; //#endregion export { createGlobal, createGlobalAsync, getGlobal, globalVar, setGlobal }; //# sourceMappingURL=globals.d.ts.map