import type { Ref } from 'vue' import { createContext } from '.' export interface PageContext { // pages may render sidebar content in #sidebar-teleport-target instead of in the main layout when true hierarchicalSidebarAvailable: Ref showAds: Ref } export const [injectPageContext, providePageContext] = createContext( 'root', 'pageContext', )