mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-06 05:51:15 +08:00
13 lines
502 B
TypeScript
13 lines
502 B
TypeScript
// Imessage API module exposes the plugin public contract.
|
|
export {
|
|
DEFAULT_IMESSAGE_ATTACHMENT_ROOTS,
|
|
resolveIMessageAttachmentRoots as resolveInboundAttachmentRoots,
|
|
resolveIMessageAttachmentRoots,
|
|
resolveIMessageRemoteAttachmentRoots as resolveRemoteInboundAttachmentRoots,
|
|
resolveIMessageRemoteAttachmentRoots,
|
|
} from "./media-contract-api.js";
|
|
export {
|
|
testing as imessageConversationBindingTesting,
|
|
createIMessageConversationBindingManager,
|
|
} from "./src/conversation-bindings.js";
|