frontend/index.d.ts

13 lines
267 B
TypeScript
Raw Normal View History

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