mirror of
https://github.com/jorgev259/soc_site-astro.git
synced 2025-06-29 07:57:41 +00:00
11 lines
325 B
TypeScript
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[]
|
|
}
|
|
}
|