UNPKG

@gguf/claw

Version:

Multi-channel AI gateway with extensible messaging integrations

15 lines (14 loc) 539 B
import type { OpenClawConfig } from "./types.js"; export type DuplicateAgentDir = { agentDir: string; agentIds: string[]; }; export declare class DuplicateAgentDirError extends Error { readonly duplicates: DuplicateAgentDir[]; constructor(duplicates: DuplicateAgentDir[]); } export declare function findDuplicateAgentDirs(cfg: OpenClawConfig, deps?: { env?: NodeJS.ProcessEnv; homedir?: () => string; }): DuplicateAgentDir[]; export declare function formatDuplicateAgentDirError(dups: DuplicateAgentDir[]): string;