mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-27 23:23:34 +00:00
6 lines
346 B
TypeScript
6 lines
346 B
TypeScript
declare const OPENCODE_VERSION: string
|
|
declare const OPENCODE_CHANNEL: string
|
|
|
|
export const InstallationVersion = typeof OPENCODE_VERSION === "string" ? OPENCODE_VERSION : "local"
|
|
export const InstallationChannel = typeof OPENCODE_CHANNEL === "string" ? OPENCODE_CHANNEL : "local"
|
|
export const InstallationLocal = InstallationChannel === "local"
|