summaryrefslogtreecommitdiffhomepage
path: root/packages/app/src/env.d.ts
blob: 9b03d336f9d4a6dfb09de45e7021a751f439ed4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
interface ImportMetaEnv {
  readonly VITE_OPENCODE_SERVER_HOST: string
  readonly VITE_OPENCODE_SERVER_PORT: string
  readonly VITE_OPENCODE_CHANNEL?: "dev" | "beta" | "prod"
}

interface ImportMeta {
  readonly env: ImportMetaEnv
}

export declare module "solid-js" {
  namespace JSX {
    interface Directives {
      sortable: true
    }
  }
}