UNPKG

@tanstack/react-router

Version:

Modern and scalable routing for React applications

15 lines (14 loc) 586 B
import { ParsedLocation, ScrollRestorationEntry, ScrollRestorationOptions } from '@tanstack/router-core'; /** * @deprecated use createRouter's `scrollRestoration` option instead */ export declare function ScrollRestoration(_props: ScrollRestorationOptions): null; export declare function useElementScrollRestoration(options: ({ id: string; getElement?: () => Window | Element | undefined | null; } | { id?: string; getElement: () => Window | Element | undefined | null; }) & { getKey?: (location: ParsedLocation) => string; }): ScrollRestorationEntry | undefined;