import type { Labrinth } from '@modrinth/api-client' import type { Ref } from 'vue' import { createContext } from '.' export interface UserPageContext { user: Ref } export const [injectUserPageContext, provideUserPageContext] = createContext( 'root', 'userPageContext', )