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" />
|
2024-11-15 21:53:09 +00:00
|
|
|
|
|
|
|
declare namespace App {
|
|
|
|
interface Locals {
|
|
|
|
token: string;
|
|
|
|
lang: { [key: string]: { id: string; name: string; description: string | null; }[]; };
|
|
|
|
user: User;
|
|
|
|
active: SystemManager | Planet;
|
|
|
|
}
|
|
|
|
}
|