Skip to content

Commit 36d218c

Browse files
committed
fix(types): explicit types on navigate
1 parent 889f86c commit 36d218c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/RouterLink.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ import { isSameRouteLocationParams, isSameRouteRecord } from './location'
1515
import { routerKey, routeLocationKey } from './injectionSymbols'
1616
import { RouteRecord } from './matcher/types'
1717
import { assign } from './utils'
18+
import { NavigationFailure } from './errors'
1819

1920
export interface RouterLinkOptions {
2021
/**
@@ -107,7 +108,9 @@ export function useLink(props: UseLinkOptions) {
107108
isSameRouteLocationParams(currentRoute.params, route.value.params)
108109
)
109110

110-
function navigate(e: MouseEvent = {} as MouseEvent) {
111+
function navigate(
112+
e: MouseEvent = {} as MouseEvent
113+
): Promise<void | NavigationFailure> {
111114
if (guardEvent(e))
112115
return router[unref(props.replace) ? 'replace' : 'push'](unref(props.to))
113116
return Promise.resolve()

0 commit comments

Comments
 (0)