mirror of
https://github.com/khoaliber/dockhand.git
synced 2026-03-06 13:21:53 +00:00
Initial commit
This commit is contained in:
23
app.d.ts
vendored
Normal file
23
app.d.ts
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
// 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 {};
|
||||
Reference in New Issue
Block a user