9 lines
282 B
TypeScript
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;
|