Skip to content

Instantly share code, notes, and snippets.

View nevthereal's full-sized avatar
🔱

Neville Brem nevthereal

🔱
View GitHub Profile
@nevthereal
nevthereal / app.d.ts
Last active August 28, 2025 14:43
SK-Better Auth Hooks
import type { User, Session } from '$lib/server/auth';
declare global {
namespace App {
interface Locals {
user: User | null;
session: Session | null;
}
}
}