env.d.ts 468 B

123456789101112131415161718192021
  1. interface ImportMetaEnv {
  2. readonly VITE_OPENCODE_SERVER_HOST: string
  3. readonly VITE_OPENCODE_SERVER_PORT: string
  4. readonly VITE_OPENCODE_CHANNEL?: "dev" | "beta" | "prod"
  5. readonly VITE_SENTRY_DSN?: string
  6. readonly VITE_SENTRY_ENVIRONMENT?: string
  7. readonly VITE_SENTRY_RELEASE?: string
  8. }
  9. interface ImportMeta {
  10. readonly env: ImportMetaEnv
  11. }
  12. export declare module "solid-js" {
  13. namespace JSX {
  14. interface Directives {
  15. sortable: true
  16. }
  17. }
  18. }