/** * Small helper to access to current global js object. * This should be preferred over the 'window' key word. * * @example * ```ts * import global from "apprt-core/global"; * window === global // -> true in browsers * ``` */ declare const globalObject: typeof globalThis; export { globalObject as default, globalObject };