mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-17 21:30:08 +00:00
21 lines
468 B
TypeScript
21 lines
468 B
TypeScript
interface ImportMetaEnv {
|
|
readonly VITE_OPENCODE_SERVER_HOST: string
|
|
readonly VITE_OPENCODE_SERVER_PORT: string
|
|
readonly VITE_OPENCODE_CHANNEL?: "dev" | "beta" | "prod"
|
|
|
|
readonly VITE_SENTRY_DSN?: string
|
|
readonly VITE_SENTRY_ENVIRONMENT?: string
|
|
readonly VITE_SENTRY_RELEASE?: string
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
}
|
|
|
|
export declare module "solid-js" {
|
|
namespace JSX {
|
|
interface Directives {
|
|
sortable: true
|
|
}
|
|
}
|
|
}
|