Co-authored-by: opencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com> Co-authored-by: Frank <frank@anoma.ly>
19 lines
300 B
TypeScript
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
|
|
}
|
|
}
|
|
}
|