summaryrefslogtreecommitdiffhomepage
path: root/packages/app/src/env.d.ts
diff options
context:
space:
mode:
authorJay <[email protected]>2026-04-16 23:31:00 -0400
committerGitHub <[email protected]>2026-04-17 03:31:00 +0000
commitfbbab9d6c8a03c4cd5bed0d13a85f52e3aca47ce (patch)
tree883ade9bc40164adaf14e69069068971cda17cee /packages/app/src/env.d.ts
parentcccb907a9b3df7eb6fae71ee9e2392dccc73e9d3 (diff)
downloadopencode-fbbab9d6c8a03c4cd5bed0d13a85f52e3aca47ce.tar.gz
opencode-fbbab9d6c8a03c4cd5bed0d13a85f52e3aca47ce.zip
feat(app): hide desktop titlebar tools behind settings (#19029)
Co-authored-by: Brendan Allan <[email protected]> Co-authored-by: Brendan Allan <[email protected]>
Diffstat (limited to 'packages/app/src/env.d.ts')
-rw-r--r--packages/app/src/env.d.ts6
1 files changed, 2 insertions, 4 deletions
diff --git a/packages/app/src/env.d.ts b/packages/app/src/env.d.ts
index 22e52f991..9b03d336f 100644
--- a/packages/app/src/env.d.ts
+++ b/packages/app/src/env.d.ts
@@ -1,16 +1,14 @@
-import "solid-js"
-
interface ImportMetaEnv {
readonly VITE_OPENCODE_SERVER_HOST: string
readonly VITE_OPENCODE_SERVER_PORT: string
- readonly OPENCODE_CHANNEL?: "dev" | "beta" | "prod"
+ readonly VITE_OPENCODE_CHANNEL?: "dev" | "beta" | "prod"
}
interface ImportMeta {
readonly env: ImportMetaEnv
}
-declare module "solid-js" {
+export declare module "solid-js" {
namespace JSX {
interface Directives {
sortable: true