23 lines
330 B
TypeScript
23 lines
330 B
TypeScript
/// <reference path="../.astro/types.d.ts" />
|
|
/// <reference types="astro/client" />
|
|
|
|
|
|
export interface ImportMetaEnv {
|
|
NODE_ENV: string
|
|
APP_URL: string
|
|
|
|
POCKETBASEURL: string
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
}
|
|
|
|
|
|
declare namespace App {
|
|
/**
|
|
* Middlewares variables
|
|
*/
|
|
interface Locals {}
|
|
}
|