11 lines
318 B
TypeScript
11 lines
318 B
TypeScript
/// <reference path="../.astro/types.d.ts" />
|
|
/// <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;
|
|
}
|
|
} |