aboutsummaryrefslogtreecommitdiff
path: root/src/app.d.ts
diff options
context:
space:
mode:
authorFuwn <[email protected]>2023-08-26 22:29:03 -0700
committerFuwn <[email protected]>2023-08-26 22:29:03 -0700
commitb89d0e7dada186e31be37e62a7a75efc2dbe9c99 (patch)
tree8c9f6b5d7aa0f709c06d5eb45fbf763883b21c89 /src/app.d.ts
downloaddue.moe-b89d0e7dada186e31be37e62a7a75efc2dbe9c99.tar.xz
due.moe-b89d0e7dada186e31be37e62a7a75efc2dbe9c99.zip
feat: initial build
Diffstat (limited to 'src/app.d.ts')
-rw-r--r--src/app.d.ts18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/app.d.ts b/src/app.d.ts
new file mode 100644
index 00000000..34cd4db6
--- /dev/null
+++ b/src/app.d.ts
@@ -0,0 +1,18 @@
+import type { AniList } from '$lib/AniList';
+
+// See https://kit.svelte.dev/docs/types#app
+// for information about these interfaces
+declare global {
+ namespace App {
+ // interface Error {}
+
+ interface Locals {
+ user: AniList;
+ }
+
+ // interface PageData {}
+ // interface Platform {}
+ }
+}
+
+export {};