19 lines
297 B
TypeScript
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 {}
|
|
}
|