| 87 | } |
| 88 | |
| 89 | export interface CustomMessage { |
| 90 | role: "custom"; |
| 91 | customType: string; |
| 92 | content: string | (TextContent | ImageContent)[]; |
| 93 | display: boolean; |
| 94 | details?: unknown; |
| 95 | timestamp?: number; |
| 96 | } |
| 97 | |
| 98 | export interface BashExecutionMessage { |
| 99 | role: "bashExecution"; |
nothing calls this directly
no outgoing calls
no test coverage detected