AstroCol/src/env.d.ts

11 lines
318 B
TypeScript
Raw Normal View History

2024-03-30 22:30:06 +00:00
/// <reference path="../.astro/types.d.ts" />
2023-10-12 21:26:26 +00:00
/// <reference types="astro/client" />
declare namespace App {
interface Locals {
token: string;
lang: { [key: string]: { id: string; name: string; description: string | null; }[]; };
user: User;
active: SystemManager | Planet;
}
}