frontend/index.d.ts
2024-12-26 14:34:59 +01:00

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;
}
}