mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-14 00:10:03 +00:00
9 lines
204 B
TypeScript
9 lines
204 B
TypeScript
interface ImportMetaEnv {
|
|
readonly VITE_SENTRY_DSN?: string
|
|
readonly VITE_SENTRY_ENVIRONMENT?: string
|
|
readonly VITE_SENTRY_RELEASE?: string
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
}
|