mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-12 23:35:58 +00:00
17 lines
408 B
TypeScript
17 lines
408 B
TypeScript
import { Page } from '#types/Page'
|
|
import { PageProps } from '#types/PageProps'
|
|
|
|
declare global {
|
|
namespace Vike {
|
|
interface PageContext {
|
|
urlPathname: string
|
|
config: {
|
|
title: string | ((pageContext: PageContext) => string) | undefined
|
|
description: string | ((pageContext: PageContext) => string) | undefined
|
|
}
|
|
Page: Page
|
|
pageProps?: PageProps
|
|
}
|
|
}
|
|
}
|