diff options
Diffstat (limited to 'src/app.d.ts')
-rw-r--r-- | src/app.d.ts | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/app.d.ts b/src/app.d.ts new file mode 100644 index 0000000..3ddb22d --- /dev/null +++ b/src/app.d.ts @@ -0,0 +1,15 @@ +/// <reference types="@sveltejs/kit" /> + +// See https://kit.svelte.dev/docs/typescript +// for information about these interfaces +declare namespace App { + interface Locals { + userid: string; + } + + interface Platform {} + + interface Session {} + + interface Stuff {} +} |