mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-21 06:51:01 +00:00
10 lines
175 B
TypeScript
10 lines
175 B
TypeScript
export type GetReplyOptions = {
|
|
onReplyStart?: () => Promise<void> | void;
|
|
};
|
|
|
|
export type ReplyPayload = {
|
|
text?: string;
|
|
mediaUrl?: string;
|
|
mediaUrls?: string[];
|
|
};
|