lingjing/node_modules/next/dist/shared/lib/router/utils/disable-smooth-scroll.d.ts
2026-02-23 09:51:43 +00:00

9 lines
304 B
TypeScript

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