(instance, opts)
| 58 | type ServerWithHttp2 = FastifyInstance<Http2Server, Http2ServerRequest, Http2ServerResponse> |
| 59 | const testPluginWithHttp2: FastifyPluginCallback<TestOptions, Http2Server> = function (instance, opts, done) { } |
| 60 | const testPluginWithHttp2Async: FastifyPluginAsync<TestOptions, Http2Server> = async function (instance, opts) { } |
| 61 | const testPluginWithHttp2WithType = ( |
| 62 | instance: ServerWithHttp2, |
| 63 | opts: FastifyPluginOptions, |
nothing calls this directly
no outgoing calls
no test coverage detected