soc_site-astro/src/env.d.ts
Jorge Vargas 4cafc41b88
Some checks failed
/ build (push) Failing after 4m43s
Implement Discord linking
2025-03-21 11:35:03 -06:00

11 lines
325 B
TypeScript

/// <reference path="../.astro/types.d.ts" />
declare namespace App {
// Note: 'import {} from ""' syntax does not work in .d.ts files.
interface Locals {
user: import('better-auth').User | null
session: import('better-auth').Session | null
permissions: string[]
pages: string[]
roles: string[]
}
}