mirror of
https://github.com/m1ngsama/FUJI.git
synced 2025-12-24 10:51:27 +00:00
12 lines
335 B
TypeScript
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
|
|
}
|