mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 16:38:20 +01:00
17 lines
358 B
TypeScript
17 lines
358 B
TypeScript
import type { JSX } from "vue/jsx-runtime";
|
|
|
|
declare module "#app" {
|
|
interface PageMeta {
|
|
breadcrumbs?: () => {
|
|
text: string;
|
|
href?: string;
|
|
list?: {
|
|
text: string;
|
|
href: string;
|
|
}[];
|
|
}[];
|
|
header?: JSX.Element;
|
|
requiresAuth?: boolean;
|
|
}
|
|
}
|