8 lines
264 B
TypeScript
8 lines
264 B
TypeScript
declare global {
|
|
const OPENCODE_VERSION: string
|
|
const OPENCODE_CHANNEL: string
|
|
}
|
|
|
|
export const VERSION = typeof OPENCODE_VERSION === "string" ? OPENCODE_VERSION : "local"
|
|
export const CHANNEL = typeof OPENCODE_CHANNEL === "string" ? OPENCODE_CHANNEL : "local"
|