UNPKG

@gguf/claw

Version:

Multi-channel AI gateway with extensible messaging integrations

17 lines (16 loc) 312 B
export type DebugCommand = { action: "show"; } | { action: "reset"; } | { action: "set"; path: string; value: unknown; } | { action: "unset"; path: string; } | { action: "error"; message: string; }; export declare function parseDebugCommand(raw: string): DebugCommand | null;