mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-15 01:19:29 +00:00
Co-authored-by: Brendan Allan <git@brendonovich.dev> Co-authored-by: Brendan Allan <brendonovich@outlook.com>
17 lines
347 B
TypeScript
17 lines
347 B
TypeScript
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
|
|
}
|
|
}
|
|
}
|