Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

app.d.ts 420 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  1. /// <reference types="@sveltejs/kit" />
  2. /// <reference types="unplugin-icons/types/svelte" />
  3. import type { User } from "$lib/types/User";
  4. // See https://kit.svelte.dev/docs/types#app
  5. // for information about these interfaces
  6. declare global {
  7. namespace App {
  8. // interface Error {}
  9. interface Locals {
  10. sessionId: string;
  11. user?: User;
  12. }
  13. // interface PageData {}
  14. // interface Platform {}
  15. }
  16. }
  17. export {};
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...