mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-25 20:05:46 -06:00
21 lines
592 B
TypeScript
21 lines
592 B
TypeScript
// Whatsapp plugin module implements text runtime behavior.
|
|
export {
|
|
sanitizeAssistantVisibleText,
|
|
sanitizeAssistantVisibleTextWithProfile,
|
|
stripToolCallXmlTags,
|
|
} from "openclaw/plugin-sdk/text-chunking";
|
|
export { normalizeE164, resolveUserPath } from "openclaw/plugin-sdk/text-utility-runtime";
|
|
export {
|
|
assertWebChannel,
|
|
isSelfChatMode,
|
|
jidToE164,
|
|
markdownToWhatsApp,
|
|
markdownToWhatsAppChunks,
|
|
resolveEquivalentWhatsAppDirectChatJids,
|
|
resolveJidToE164,
|
|
toWhatsappJid,
|
|
toWhatsappJidWithLid,
|
|
type JidToE164Options,
|
|
type WebChannel,
|
|
} from "./targets-runtime.js";
|