(m: Message<keyof MessageType>)
| 54 | }, |
| 55 | |
| 56 | isExecutingError(m: Message<keyof MessageType>): m is Message<'execution_error'> { |
| 57 | return m.type === 'execution_error' |
| 58 | }, |
| 59 | |
| 60 | isStatus(m: Message<keyof MessageType>): m is Message<'status'> { |
| 61 | return m.type === 'status' |
nothing calls this directly
no outgoing calls
no test coverage detected