(event: { type: string; payload: { value: number } })
| 9 | |
| 10 | interface HostSide { |
| 11 | emitEvent(event: { type: string; payload: { value: number } }): void; |
| 12 | requestApproval(request: { requestId: string; toolName: string }): Promise<{ decision: string }>; |
| 13 | fail(request: { code: string }): Promise<void>; |
| 14 | } |
no outgoing calls
no test coverage detected