env.d.ts 354 B

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