22 lines
420 B
TypeScript
22 lines
420 B
TypeScript
import "solid-js"
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_OPENCODE_SERVER_HOST: string
|
|
readonly VITE_OPENCODE_SERVER_PORT: string
|
|
readonly VITE_SENTRY_DSN?: string
|
|
readonly VITE_SENTRY_ENVIRONMENT?: string
|
|
readonly VITE_SENTRY_RELEASE?: string
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
}
|
|
|
|
declare module "solid-js" {
|
|
namespace JSX {
|
|
interface Directives {
|
|
sortable: true
|
|
}
|
|
}
|
|
}
|