Files
opencode/packages/app/src/env.d.ts
Adam ff4414bb15 chore: refactor packages/app files (#13236)
Co-authored-by: opencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com>
Co-authored-by: Frank <frank@anoma.ly>
2026-02-12 09:49:14 -06:00

19 lines
300 B
TypeScript

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
}
}
}