| 12345678910111213141516171819 |
- import "solid-js"
- interface ImportMetaEnv {
- readonly VITE_OPENCODE_SERVER_HOST: string
- readonly VITE_OPENCODE_SERVER_PORT: string
- readonly OPENCODE_CHANNEL?: "dev" | "beta" | "prod"
- }
- interface ImportMeta {
- readonly env: ImportMetaEnv
- }
- declare module "solid-js" {
- namespace JSX {
- interface Directives {
- sortable: true
- }
- }
- }
|