frontend/index.d.ts

16 lines
295 B
TypeScript
Raw Normal View History

declare module "#app" {
interface PageMeta {
2024-12-07 23:05:26 +01:00
breadcrumbs?: () => {
text: string;
href?: string;
list?: {
text: string;
href: string;
}[];
}[];
requiresAuth?: boolean;
}
}
2025-07-16 07:48:39 +02:00
export {};