22 lines
432 B
TypeScript
22 lines
432 B
TypeScript
// See https://svelte.dev/docs/kit/types#app.d.ts
|
|
// for information about these interfaces
|
|
|
|
import type { ApiClient } from '$lib/server/api';
|
|
import type { User } from 'lucide-svelte';
|
|
|
|
declare global {
|
|
namespace App {
|
|
// interface Error {}
|
|
interface Locals {
|
|
authToken: string | null;
|
|
api: ApiClient;
|
|
user: User;
|
|
}
|
|
// interface PageData {}
|
|
// interface PageState {}
|
|
// interface Platform {}
|
|
}
|
|
}
|
|
|
|
export {};
|