Files
template-web-astro/src/env.d.ts
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 {}
}