vike
Version:
The Framework *You* Control - Next.js & Nuxt alternative for unprecedented flexibility and dependability.
15 lines (14 loc) • 614 B
TypeScript
export { getGlobalContextPublicShared };
export type { GlobalContextPublicMinimum };
import type { PageConfigGlobalRuntime } from '../types/PageConfig.js';
type GlobalContextPublicMinimum = {
_isOriginalObject: true;
isGlobalContext: true;
_pageConfigGlobal: PageConfigGlobalRuntime;
};
declare function getGlobalContextPublicShared<GlobalContext extends GlobalContextPublicMinimum>(globalContext: GlobalContext): GlobalContext & {
_isProxyObject: true;
_originalObject: GlobalContext;
} & {
dangerouslyUseInternals: import("./getPublicProxy.js").DangerouslyUseInternals<GlobalContext>;
};