frontend/index.d.ts
2024-12-04 15:17:47 +01:00

13 lines
267 B
TypeScript

declare module "#app" {
interface PageMeta {
breadcrumbs?: {
text: string;
href?: string;
}[];
requiresAuth?: boolean;
}
}
// It is always important to import/export something when augmenting a type
export {};