| 123456789101112131415161718 |
- import "solid-js"
- interface ImportMetaEnv {
- readonly VITE_OPENCODE_SERVER_HOST: string
- readonly VITE_OPENCODE_SERVER_PORT: string
- }
- interface ImportMeta {
- readonly env: ImportMetaEnv
- }
- declare module "solid-js" {
- namespace JSX {
- interface Directives {
- sortable: true
- }
- }
- }
|