mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-15 20:03:11 +00:00
7 lines
198 B
TypeScript
7 lines
198 B
TypeScript
declare const __HF_BUILD_ID__: string | undefined;
|
|
|
|
export const CLI_BUILD_ID =
|
|
typeof __HF_BUILD_ID__ === "string" && __HF_BUILD_ID__.trim().length > 0
|
|
? __HF_BUILD_ID__.trim()
|
|
: "dev";
|
|
|