Loggest thine Stuff
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
510 B

  1. /// <reference types="@sveltejs/kit" />
  2. // See https://kit.svelte.dev/docs/types#app
  3. // for information about these interfaces
  4. declare namespace App {
  5. interface Locals {
  6. user?: import("$lib/models/user").default
  7. idToken?: string
  8. scopes?: import("$lib/models/scope").default[]
  9. }
  10. // interface Platform {}
  11. interface Session {
  12. groupOptions?: import("$lib/models/items").GroupItemsOptions
  13. }
  14. interface Stuff {
  15. idToken?: string,
  16. title?: string,
  17. scope?: import("$lib/models/scope").default
  18. }
  19. }