@gguf/claw
Version:
Multi-channel AI gateway with extensible messaging integrations
21 lines (20 loc) • 670 B
TypeScript
import { getReplyFromConfig } from "../../auto-reply/reply.js";
import { loadConfig } from "../../config/config.js";
import { sendMessageWhatsApp } from "../outbound.js";
export declare function runWebHeartbeatOnce(opts: {
cfg?: ReturnType<typeof loadConfig>;
to: string;
verbose?: boolean;
replyResolver?: typeof getReplyFromConfig;
sender?: typeof sendMessageWhatsApp;
sessionId?: string;
overrideBody?: string;
dryRun?: boolean;
}): Promise<void>;
export declare function resolveHeartbeatRecipients(cfg: ReturnType<typeof loadConfig>, opts?: {
to?: string;
all?: boolean;
}): {
recipients: string[];
source: string;
};