7 lines
142 B
TypeScript
7 lines
142 B
TypeScript
|
|
declare global {
|
||
|
|
const OPENCODE_VERSION: string
|
||
|
|
}
|
||
|
|
|
||
|
|
export const VERSION =
|
||
|
|
typeof OPENCODE_VERSION === "string" ? OPENCODE_VERSION : "dev"
|