Files
openclaw/src/auto-reply/reply/reply.test-helpers.ts
2026-03-26 18:27:13 +00:00

13 lines
369 B
TypeScript

export function createMockTypingController() {
return {
onReplyStart: async () => undefined,
startTypingLoop: async () => undefined,
startTypingOnText: async () => undefined,
refreshTypingTtl: () => undefined,
isActive: () => false,
markRunComplete: () => undefined,
markDispatchIdle: () => undefined,
cleanup: () => undefined,
};
}