Florian Bouillon 09ed4c487d
Some checks failed
Build, check & Test / run (push) Failing after 39s
feat: first version
Signed-off-by: Florian BOUILLON <f.bouillon@aptatio.com>
2023-07-20 17:41:16 +02:00

24 lines
414 B
TypeScript

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