vike
Version:
(Replaces Next.js/Nuxt) 🔨 Composable framework to build advanced applications with flexibility and stability.
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>;
};