avior.me/src/env.d.ts
2023-09-21 14:32:35 +00:00

24 lines
408 B
TypeScript

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