10 lines
254 B
Plaintext
10 lines
254 B
Plaintext
import type { HistoryLocation } from '@tanstack/history'
|
|
|
|
declare module '@tanstack/history' {
|
|
interface HistoryState {
|
|
__tempLocation?: HistoryLocation
|
|
__tempKey?: string
|
|
__hashScrollIntoViewOptions?: boolean | ScrollIntoViewOptions
|
|
}
|
|
}
|