mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-12 01:31:08 +00:00
13 lines
369 B
TypeScript
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,
|
|
};
|
|
}
|