| 8 | } |
| 9 | |
| 10 | export class CompositeNodeHttpHandlerPlugin<T extends Context, TPlugin extends NodeHttpHandlerPlugin<T>> |
| 11 | extends CompositeStandardHandlerPlugin<T, TPlugin> implements NodeHttpHandlerPlugin<T> { |
| 12 | initRuntimeAdapter(options: NodeHttpHandlerOptions<T>): void { |
| 13 | for (const plugin of this.plugins) { |
| 14 | plugin.initRuntimeAdapter?.(options) |
| 15 | } |
| 16 | } |
| 17 | } |
nothing calls this directly
no outgoing calls
no test coverage detected