mirror of
https://github.com/khoaliber/dockhand.git
synced 2026-03-02 13:17:57 +00:00
24 lines
529 B
TypeScript
24 lines
529 B
TypeScript
// See https://svelte.dev/docs/kit/types#app.d.ts
|
|
// for information about these interfaces
|
|
|
|
import type { AuthenticatedUser } from '$lib/server/auth';
|
|
|
|
// Build-time constants injected by Vite
|
|
declare const __BUILD_DATE__: string | null;
|
|
declare const __BUILD_COMMIT__: string | null;
|
|
|
|
declare global {
|
|
namespace App {
|
|
// interface Error {}
|
|
interface Locals {
|
|
user: AuthenticatedUser | null;
|
|
authEnabled: boolean;
|
|
}
|
|
// interface PageData {}
|
|
// interface PageState {}
|
|
// interface Platform {}
|
|
}
|
|
}
|
|
|
|
export {};
|