2022-08-09 10:21:38 +02:00
|
|
|
// See https://kit.svelte.dev/docs/types#app
|
|
|
|
// for information about these interfaces
|
|
|
|
// and what to do when importing types
|
|
|
|
declare namespace App {
|
2022-08-09 10:44:30 +02:00
|
|
|
// interface Locals {}
|
|
|
|
// interface Platform {}
|
|
|
|
// interface PrivateEnv {}
|
|
|
|
// interface PublicEnv {}
|
2022-08-10 17:50:13 +02:00
|
|
|
interface Session {
|
|
|
|
title: string
|
|
|
|
}
|
2022-08-09 10:44:30 +02:00
|
|
|
// interface Stuff {}
|
2022-08-09 10:21:38 +02:00
|
|
|
}
|