//#region src/common/global.d.ts /** * Global context for Zeed, used for cross-module state. * @category Global */ interface ZeedGlobalContext { [key: string]: any; } declare global { interface ZeedGlobalContext {} } /** Global object to work across module boundaries as well. Internally already used for logger and emitter. */ declare function getGlobalContext(defaultValue?: {}): T; declare const globalAny: any; //#endregion export { getGlobalContext as n, globalAny as r, ZeedGlobalContext as t }; //# sourceMappingURL=global-Dmo6PX9k.d.cts.map