frontend/index.d.ts

13 lines
273 B
TypeScript
Raw Normal View History

declare module "#app" {
interface PageMeta {
2024-12-07 23:05:26 +01:00
breadcrumbs?: () => {
text: string;
href?: string;
}[];
requiresAuth?: boolean;
}
}
// It is always important to import/export something when augmenting a type
export {};