15 lines
586 B
Plaintext
15 lines
586 B
Plaintext
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;
|