| 4 | import { CompositeStandardHandlerPlugin } from '../standard' |
| 5 | |
| 6 | export interface FetchHandlerPlugin<T extends Context> extends StandardHandlerPlugin<T> { |
| 7 | initRuntimeAdapter?(options: FetchHandlerOptions<T>): void |
| 8 | } |
| 9 | |
| 10 | export class CompositeFetchHandlerPlugin<T extends Context, TPlugin extends FetchHandlerPlugin<T>> |
| 11 | extends CompositeStandardHandlerPlugin<T, TPlugin> implements FetchHandlerPlugin<T> { |
no outgoing calls
no test coverage detected