import { g as getContext } from "./ssr.js"; import "@sveltejs/kit/internal"; import "./exports.js"; import "./utils.js"; import "@sveltejs/kit/internal/server"; import { o as onMount } from "./ssr2.js"; const is_legacy = onMount.toString().includes("$$") || /function \w+\(\) \{\}/.test(onMount.toString()); if (is_legacy) { ({ data: {}, form: null, error: null, params: {}, route: { id: null }, state: {}, status: -1, url: new URL("https://example.com") }); } const getStores = () => { const stores = getContext("__svelte__"); return { /** @type {typeof page} */ page: { subscribe: stores.page.subscribe }, /** @type {typeof navigating} */ navigating: { subscribe: stores.navigating.subscribe }, /** @type {typeof updated} */ updated: stores.updated }; }; const page = { subscribe(fn) { const store = getStores().page; return store.subscribe(fn); } }; export { page as p };