Select Git revision
-
Emmanuel Raviart authoredEmmanuel Raviart authored
app.d.ts 637 B
// See https://kit.svelte.dev/docs/types#app
// for information about these interfaces
// and what to do when importing types
// See https://kit.svelte.dev/docs/types#app
// for information about these interfaces
declare global {
namespace App {
// interface Error {}
type OpenIdConnectLocals =
import("$lib/server/openid_connect_handler").OpenIdConnectLocals
type UserLocals = import("$lib/server/user_handler").UserLocals
interface Locals extends UserLocals, OpenIdConnectLocals {
id_token?: string
user_id?: string
}
// interface PageData {}
// interface Platform {}
}
}
export {}