add sveltekit template

This commit is contained in:
sam 2024-06-08 21:02:12 +02:00
parent 401e268281
commit 14f8e77e6a
24 changed files with 2157 additions and 1 deletions

16
Foxnouns.Frontend/src/app.d.ts vendored Normal file
View file

@ -0,0 +1,16 @@
// See https://kit.svelte.dev/docs/types#app
// for information about these interfaces
declare global {
namespace App {
// interface Error {}
// interface Locals {}
interface Locals {
token?: string;
}
// interface PageData {}
// interface PageState {}
// interface Platform {}
}
}
export {};