feat: Upgrade template based on projects made with it
Some checks failed
Build, check & Test / run (push) Failing after 42s

Signed-off-by: Florian Bouillon <f.bouillon@aptatio.com>
This commit is contained in:
2023-10-09 11:47:11 +02:00
parent bf06e41238
commit e26b4eb4a5
42 changed files with 934 additions and 136 deletions

43
src/env.d.ts vendored
View File

@ -1,23 +1,20 @@
/// <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
}
}
/// <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 {}
}