refactor: ♻️ Improve mobile timeline switching

This commit is contained in:
Jesse Wierzbinski 2024-12-26 14:34:59 +01:00
parent 466c1eaaac
commit 3ff674017e
No known key found for this signature in database
10 changed files with 82 additions and 103 deletions

10
index.d.ts vendored
View file

@ -1,12 +1,16 @@
import type { JSX } from "vue/jsx-runtime";
declare module "#app" {
interface PageMeta {
breadcrumbs?: () => {
text: string;
href?: string;
list?: {
text: string;
href: string;
}[];
}[];
header?: JSX.Element;
requiresAuth?: boolean;
}
}
// It is always important to import/export something when augmenting a type
export {};