| 14 | }; |
| 15 | |
| 16 | export interface Step { |
| 17 | key: string; |
| 18 | label: string; |
| 19 | status: 'pending' | 'active' | 'done'; |
| 20 | details: any; |
| 21 | } |
| 22 | |
| 23 | export interface ChatMessage { |
| 24 | id: string; |
nothing calls this directly
no outgoing calls
no test coverage detected