fix(cycles): narrow config type imports

This commit is contained in:
Vincent Koc
2026-04-11 13:59:02 +01:00
parent 88be9b525c
commit 759b5aa764
2 changed files with 3 additions and 2 deletions

View File

@@ -1,4 +1,5 @@
import type { OpenClawConfig, SkillConfig } from "../../config/config.js";
import type { OpenClawConfig } from "../../config/types.openclaw.js";
import type { SkillConfig } from "../../config/types.skills.js";
import {
evaluateRuntimeEligibility,
hasBinary,

View File

@@ -1,5 +1,5 @@
import type { OpenClawConfig } from "./config.js";
import type { AgentAcpBinding, AgentBinding, AgentRouteBinding } from "./types.agents.js";
import type { OpenClawConfig } from "./types.openclaw.js";
export type ConfiguredBindingRule = AgentBinding;