(m: Message<keyof MessageType>)
| 62 | }, |
| 63 | |
| 64 | isExecutingInterrupted(m: Message<keyof MessageType>): m is Message<'execution_interrupted'> { |
| 65 | return m.type === "execution_interrupted" |
| 66 | }, |
| 67 | |
| 68 | isExecuting(m: Message<keyof MessageType>): m is Message<'executing'> { |
| 69 | return m.type === 'executing' |
nothing calls this directly
no outgoing calls
no test coverage detected