mirror of
https://github.com/RayLabsHQ/gitea-mirror.git
synced 2025-12-06 11:36:44 +03:00
9 lines
231 B
TypeScript
9 lines
231 B
TypeScript
/// <reference path="./.astro/types.d.ts" />
|
|
/// <reference types="astro/client" />
|
|
|
|
declare namespace App {
|
|
interface Locals {
|
|
user: import("better-auth").User | null;
|
|
session: import("better-auth").Session | null;
|
|
}
|
|
} |