openclaw/src/auto-reply/types.ts

10 lines
175 B
TypeScript

export type GetReplyOptions = {
onReplyStart?: () => Promise<void> | void;
};
export type ReplyPayload = {
text?: string;
mediaUrl?: string;
mediaUrls?: string[];
};