FUJI/src/env.d.ts
2024-09-29 22:01:53 +08:00

12 lines
335 B
TypeScript

/// <reference path="../.astro/types.d.ts" />
interface ImportMetaEnv {
readonly PUBLIC_SITE_URL: string
readonly PUBLIC_LOGTO_CALLBACK_URL: string
readonly PUBLIC_LOGTO_REDIRECT_URL: string
readonly PUBLIC_LOGTO_APP_ID: string
readonly PUBLIC_LOGTO_ENDPOINT: string
}
interface ImportMeta {
readonly env: ImportMetaEnv
}