fix(whatsapp): keep monitor helper types internal

This commit is contained in:
Vincent Koc
2026-07-29 17:18:57 +08:00
parent e2df9be989
commit 6d6908eabc
2 changed files with 2 additions and 2 deletions
@@ -3,7 +3,7 @@ import type { GroupMetadata, proto } from "baileys";
const WHATSAPP_BAILEYS_CACHE_MAX_ENTRIES = 500;
export type WhatsAppBaileysCacheEntry<T> = {
type WhatsAppBaileysCacheEntry<T> = {
expiresAt: number;
value: T;
};
@@ -83,7 +83,7 @@ export type WhatsAppAppendReplyWindow = {
maxAgeMs: number;
};
export type WhatsAppMessageDeliveryOptions = {
type WhatsAppMessageDeliveryOptions = {
cfg: OpenClawConfig;
loadConfig?: () => OpenClawConfig;
verbose: boolean;