We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98443c0 commit bba9735Copy full SHA for bba9735
tests/fixtures/hapi/server.ts
@@ -1,4 +1,4 @@
1
-import { Server, ServerApplicationState } from '@hapi/hapi';
+import { Server } from '@hapi/hapi';
2
import '../controllers/rootController';
3
4
import '../controllers/optionsController';
@@ -23,7 +23,7 @@ import { RegisterRoutes } from './routes';
23
24
export const server = new Server({});
25
26
-(RegisterRoutes as (app: Server<ServerApplicationState>) => void)(server);
+(RegisterRoutes as (app: Server) => void)(server);
27
28
server.start().catch(err => {
29
if (err) {
0 commit comments