2024-11-25 16:27:31 +01:00
|
|
|
// See https://svelte.dev/docs/kit/types#app.d.ts
|
|
|
|
// for information about these interfaces
|
|
|
|
declare global {
|
|
|
|
namespace App {
|
|
|
|
// interface Error {}
|
2024-12-01 22:48:00 +01:00
|
|
|
interface Locals {
|
|
|
|
token?: string;
|
|
|
|
userId?: string;
|
|
|
|
}
|
2024-11-25 16:27:31 +01:00
|
|
|
// interface PageData {}
|
|
|
|
// interface PageState {}
|
|
|
|
// interface Platform {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export {};
|