chore(*): Add base sveltekit files

This commit is contained in:
Josh Creek
2024-04-29 19:41:44 +01:00
parent 2acd51d2ab
commit 6794580c01
20 changed files with 10115 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
// See https://kit.svelte.dev/docs/types#app
// for information about these interfaces
// and what to do when importing types
declare global {
const __DATE__: string;
const __RELOAD_SW__: boolean;
namespace App {
// interface Error {}
interface Locals {
userid: string;
buildDate: string;
periodicUpdates: boolean;
}
// interface PageData {}
// interface PageState {}
// interface Platform {}
}
}
export {};