mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 00:18:20 +01:00
16 lines
295 B
TypeScript
16 lines
295 B
TypeScript
declare module "#app" {
|
|
interface PageMeta {
|
|
breadcrumbs?: () => {
|
|
text: string;
|
|
href?: string;
|
|
list?: {
|
|
text: string;
|
|
href: string;
|
|
}[];
|
|
}[];
|
|
requiresAuth?: boolean;
|
|
}
|
|
}
|
|
|
|
export {};
|