mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-16 00:40:43 +00:00
10 lines
172 B
TypeScript
10 lines
172 B
TypeScript
export type MessagingToolSend = {
|
|
tool: string;
|
|
provider: string;
|
|
accountId?: string;
|
|
to?: string;
|
|
threadId?: string;
|
|
text?: string;
|
|
mediaUrls?: string[];
|
|
};
|