aboutsummaryrefslogtreecommitdiff
path: root/src/app.d.ts
diff options
context:
space:
mode:
authormat <github@matdoes.dev>2022-03-17 14:27:36 -0500
committermat <github@matdoes.dev>2022-03-17 14:27:36 -0500
commit557423e887a363d0d1be1dfc6db613f83fd7cec0 (patch)
tree08796b7de8bff9a9de1f438c5bb45f2b62d43410 /src/app.d.ts
parente6be291bd6787199f644b263c28c6d2c8b9b1d74 (diff)
downloadskyblock-stats-557423e887a363d0d1be1dfc6db613f83fd7cec0.tar.gz
skyblock-stats-557423e887a363d0d1be1dfc6db613f83fd7cec0.tar.bz2
skyblock-stats-557423e887a363d0d1be1dfc6db613f83fd7cec0.zip
add logging in
Diffstat (limited to 'src/app.d.ts')
-rw-r--r--src/app.d.ts18
1 files changed, 10 insertions, 8 deletions
diff --git a/src/app.d.ts b/src/app.d.ts
index efdb902..ddaae39 100644
--- a/src/app.d.ts
+++ b/src/app.d.ts
@@ -2,14 +2,16 @@
// // See https://kit.svelte.dev/docs/typescript
// // for information about these interfaces
-// declare namespace App {
-// interface Locals {
-// userid: string;
-// }
+declare namespace App {
+ interface Locals {
+ sid: string | undefined
+ }
-// interface Platform {}
+ // interface Platform {}
-// interface Session {}
+ interface Session {
+ sid: string | undefined
+ }
-// interface Stuff {}
-// }
+ // interface Stuff {}
+}