Files
scrap/node_modules/next/dist/shared/lib/router/utils/handle-smooth-scroll.d.ts
2024-09-24 03:52:46 +00:00

9 lines
282 B
TypeScript

/**
* Run function with `scroll-behavior: auto` applied to `<html/>`.
* This css change will be reverted after the function finishes.
*/
export declare function handleSmoothScroll(fn: () => void, options?: {
dontForceLayout?: boolean;
onlyHashChange?: boolean;
}): void;