Skip to content

Commit 9fc0996

Browse files
committed
refactor(types): Rename ScrollBehavior to RouterScrollBehavior
BREAKING CHANGE: there is already an existing type named `ScrollBehavior`, so we are renaming our type to avoid any confusions and allow the user to use both types at the same type (which given what the existing `ScrollBehavior` type is designed for, will likely happen).
1 parent 8184619 commit 9fc0996

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export {
4141
Router,
4242
RouterOptions,
4343
ErrorHandler,
44-
ScrollBehavior,
44+
RouterScrollBehavior,
4545
} from './router'
4646

4747
export {

src/router.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,10 @@ type OnReadyCallback = [() => void, (reason?: any) => void]
6868

6969
type Awaitable<T> = T | Promise<T>
7070

71-
export interface ScrollBehavior {
71+
/**
72+
* Type of the `scrollBehavior` option that can be passed to `createRouter`.
73+
*/
74+
export interface RouterScrollBehavior {
7275
/**
7376
* @param to - Route location where we are navigating to
7477
* @param from - Route location where we are navigating from
@@ -114,7 +117,7 @@ export interface RouterOptions extends PathParserOptions {
114117
* }
115118
* ```
116119
*/
117-
scrollBehavior?: ScrollBehavior
120+
scrollBehavior?: RouterScrollBehavior
118121
/**
119122
* Custom implementation to parse a query. See its counterpart,
120123
* {@link RouterOptions.stringifyQuery}.

0 commit comments

Comments
 (0)