diff options
| author | 2025-08-19 20:40:19 +0000 | |
|---|---|---|
| committer | 2025-08-19 20:40:19 +0000 | |
| commit | 7fdaea73c5c67565202e19d6182fc215427919c3 (patch) | |
| tree | c69e266fe672cba5f8bffd5f53e93b0efab65e9c /src/app.d.ts | |
| download | crunched-7fdaea73c5c67565202e19d6182fc215427919c3.tar.gz crunched-7fdaea73c5c67565202e19d6182fc215427919c3.tar.bz2 crunched-7fdaea73c5c67565202e19d6182fc215427919c3.tar.lz crunched-7fdaea73c5c67565202e19d6182fc215427919c3.zip | |
feat: oidc attempt 1
Diffstat (limited to 'src/app.d.ts')
| -rw-r--r-- | src/app.d.ts | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/app.d.ts b/src/app.d.ts new file mode 100644 index 0000000..cfeb8a5 --- /dev/null +++ b/src/app.d.ts @@ -0,0 +1,16 @@ +// See https://svelte.dev/docs/kit/types#app.d.ts +// for information about these interfaces +type Session = unknown; +declare global { + namespace App { + // interface Error {} + interface Locals { + auth: () => Promise<Session | null>; + } + // interface PageData {} + // interface PageState {} + // interface Platform {} + } +} + +export {}; |