frontend/index.d.ts

17 lines
358 B
TypeScript
Raw Normal View History

import type { JSX } from "vue/jsx-runtime";
declare module "#app" {
interface PageMeta {
2024-12-07 23:05:26 +01:00
breadcrumbs?: () => {
text: string;
href?: string;
list?: {
text: string;
href: string;
}[];
}[];
header?: JSX.Element;
requiresAuth?: boolean;
}
}