1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
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 } } }