Skip to content

Commit 0f6b7e2

Browse files
committed
Fix types
1 parent 7991cf9 commit 0f6b7e2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { FastifyRequest, FastifyInstance, RawServerBase, RawRequestDefaultExpression, RawReplyDefaultExpression, FastifyError } from 'fastify';
22

33
declare function fastifyOauth2 (
4-
instance: FastifyInstance<RawServerBase, RawRequestDefaultExpression<RawServerBase>, RawReplyDefaultExpression<RawServerBase>>,
4+
instance: FastifyInstance,
55
opts: fastifyOauth2.FastifyOAuth2Options,
66
next: (err?: FastifyError) => void
77
): void;

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
],
2626
"homepage": "https://github.com/fastify/fastify-oauth2#readme",
2727
"devDependencies": {
28-
"fastify": "^3.0.0",
28+
"fastify": "^3.0.3",
2929
"nock": "^13.0.0",
3030
"pre-commit": "^1.2.2",
3131
"simple-get": "^4.0.0",
@@ -36,7 +36,7 @@
3636
},
3737
"dependencies": {
3838
"es6-promisify": "^6.0.0",
39-
"fastify-plugin": "^2.0.0",
39+
"fastify-plugin": "^2.0.1",
4040
"simple-oauth2": "^3.4.0"
4141
}
4242
}

0 commit comments

Comments
 (0)