mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 08:28:20 +01:00
13 lines
267 B
TypeScript
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 {};
|