mirror of
https://github.com/System-End/campfire.git
synced 2026-04-19 19:45:12 +00:00
10 lines
No EOL
276 B
TypeScript
10 lines
No EOL
276 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;
|
|
}
|
|
} |