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

/// <reference types="@sveltejs/kit" />
// See https://kit.svelte.dev/docs/types#app
// for information about these interfaces
declare namespace App {
interface Locals {
user?: import("$lib/models/user").default
idToken?: string
scopes?: import("$lib/models/scope").default[]
}
// interface Platform {}
interface Session {
groupOptions?: import("$lib/models/items").GroupItemsOptions
}
interface Stuff {
idToken?: string,
title?: string,
scope?: import("$lib/models/scope").default
}
}