(handle: HostHandle)
| 33 | |
| 34 | /** Used by the core-side adapter: unwraps (only the adapter should call this). */ |
| 35 | export function unwrapHostHandle(handle: HostHandle): HostBundle { |
| 36 | return (handle as { [k: symbol]: HostBundle })[HOST_HANDLE] |
| 37 | } |
| 38 | |
| 39 | /** Backend for the agent() hook. */ |
| 40 | export type AgentRunner = { |
no outgoing calls
no test coverage detected