finished the front for the task manager

This commit is contained in:
celeste
2026-03-01 14:04:21 +01:00
parent 8c368f3c8e
commit 358df6e0bd
66 changed files with 1319 additions and 179 deletions

View File

@@ -27,15 +27,17 @@ export {};
declare module "$app/types" {
export interface AppTypes {
RouteId(): "/";
RouteId(): "/" | "/courses" | "/taches";
RouteParams(): {
};
LayoutParams(): {
"/": Record<string, never>
"/": Record<string, never>;
"/courses": Record<string, never>;
"/taches": Record<string, never>
};
Pathname(): "/";
Pathname(): "/" | "/courses" | "/taches";
ResolvedPathname(): `${"" | `/${string}`}${ReturnType<AppTypes['Pathname']>}`;
Asset(): "/robots.txt" | string & {};
Asset(): "/rex.png" | "/robots.txt" | string & {};
}
}