mirror of
https://github.com/Aviortheking/games.git
synced 2025-04-23 11:22:09 +00:00
24 lines
391 B
TypeScript
24 lines
391 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
|
|
}
|
|
}
|