UNPKG

@gguf/claw

Version:

Multi-channel AI gateway with extensible messaging integrations

16 lines (15 loc) 307 B
export type ConfigCommand = { action: "show"; path?: string; } | { action: "set"; path: string; value: unknown; } | { action: "unset"; path: string; } | { action: "error"; message: string; }; export declare function parseConfigCommand(raw: string): ConfigCommand | null;