mirror of
https://github.com/anomalyco/opencode.git
synced 2026-08-10 08:33:25 +00:00
31 lines
606 B
TypeScript
31 lines
606 B
TypeScript
interface ImportMetaEnv {
|
|
readonly VITE_OPENCODE_SERVER_HOST: string
|
|
readonly VITE_OPENCODE_SERVER_PORT: string
|
|
readonly VITE_OPENCODE_CHANNEL?: "dev" | "beta" | "prod"
|
|
|
|
readonly VITE_SENTRY_DSN?: string
|
|
readonly VITE_SENTRY_ENVIRONMENT?: string
|
|
readonly VITE_SENTRY_RELEASE?: string
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
}
|
|
|
|
declare module "*.png" {
|
|
const src: string
|
|
export default src
|
|
}
|
|
|
|
declare module "*.mp4" {
|
|
const src: string
|
|
export default src
|
|
}
|
|
|
|
export declare module "solid-js" {
|
|
namespace JSX {
|
|
interface Directives {
|
|
sortable: true
|
|
}
|
|
}
|
|
}
|