Florian Bouillon 3e91597dca feat: multiple changes
Signed-off-by: Avior <git@avior.me>
2024-09-09 14:27:46 +02:00

19 lines
297 B
TypeScript

/// <reference path="../.astro/types.d.ts" />
/// <reference types="astro/client" />
/**
* Environment variables declaration
*/
interface ImportMetaEnv {}
interface ImportMeta {
readonly env: ImportMetaEnv
}
declare namespace App {
/**
* Middlewares variables
*/
interface Locals {}
}