mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-19 22:10:51 +00:00
7 lines
429 B
TypeScript
7 lines
429 B
TypeScript
export const optionalBundledClusters: string[];
|
|
export const optionalBundledClusterSet: Set<string>;
|
|
export const OPTIONAL_BUNDLED_BUILD_ENV: "OPENCLAW_INCLUDE_OPTIONAL_BUNDLED";
|
|
export function isOptionalBundledCluster(cluster: string): boolean;
|
|
export function shouldIncludeOptionalBundledClusters(env?: NodeJS.ProcessEnv): boolean;
|
|
export function shouldBuildBundledCluster(cluster: string, env?: NodeJS.ProcessEnv): boolean;
|