barebones docker | pocketbase | hono | svelte

This commit is contained in:
JCEEE
2026-06-23 21:49:54 +01:00
parent 2253b54077
commit f9d9fa9ace
105 changed files with 27341 additions and 97 deletions
+4 -3
View File
@@ -29,14 +29,15 @@ declare module "$app/types" {
type MatcherParam<M> = M extends (param : string) => param is (infer U extends string) ? U : string;
export interface AppTypes {
RouteId(): "/";
RouteId(): "/" | "/debug";
RouteParams(): {
};
LayoutParams(): {
"/": Record<string, never>
"/": Record<string, never>;
"/debug": Record<string, never>
};
Pathname(): "/";
Pathname(): "/" | "/debug";
ResolvedPathname(): `${"" | `/${string}`}${ReturnType<AppTypes['Pathname']>}`;
Asset(): "/robots.txt" | string & {};
}