env.d.ts 300 B

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