(input: Partial<{
cron: string;
prompt: string;
}>)
| 9 | // --- CronCreate ------------------------------------------------------------- |
| 10 | |
| 11 | export function renderCreateToolUseMessage(input: Partial<{ |
| 12 | cron: string; |
| 13 | prompt: string; |
| 14 | }>): React.ReactNode { |
| 15 | return `${input.cron ?? ''}${input.prompt ? `: ${truncate(input.prompt, 60, true)}` : ''}`; |
| 16 | } |
| 17 | export function renderCreateResultMessage(output: CreateOutput): React.ReactNode { |
| 18 | return <MessageResponse> |
| 19 | <Text> |
nothing calls this directly
no test coverage detected