(url: string, init?: PluginNetRequestInit)
| 297 | /** Outbound HTTP for a plugin — always through the host SSRF guard, scoped to `manifest.net.allow`. */ |
| 298 | export interface PluginNetCapability { |
| 299 | fetch(url: string, init?: PluginNetRequestInit): Promise<PluginNetResponse>; |
| 300 | } |
| 301 | |
| 302 | /** Normalized outbound send for a plugin — translated host-side to MessageService.sendText/reply. */ |
no outgoing calls
no test coverage detected