forked from izu/student-web-if-development-kit
12 lines
238 B
TypeScript
12 lines
238 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_SPREADSHEET_ID: string
|
|
readonly VITE_GOOGLE_API_KEY: string
|
|
readonly VITE_API_BASE_URL: string
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
}
|