Skip to content

Commit dabc6dc

Browse files
committed
Remove implicitly any type
1 parent 6a69118 commit dabc6dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/next/client/router.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ coreMethodFields.forEach((field) => {
8888

8989
routerEvents.forEach((event) => {
9090
singletonRouter.ready(() => {
91-
Router.events.on(event, (...args) => {
91+
Router.events.on(event, (...args: any[]) => {
9292
const eventField = `on${event.charAt(0).toUpperCase()}${event.substring(
9393
1
9494
)}`

0 commit comments

Comments
 (0)