enableElementScroll
 type: function  
since: v2.6.0
 
   since: v2.6.0
The enableElementScroll function is used to re-enable element scroll after disabling it with disableElementScroll utility
Usage
import { enableElementScroll } from '@mustib/utils/browser'
enableElementScroll()Definition
function enableElementScroll(options?: {  element?: HTMLElement}) { }Parameters
-  optionstype options = {element?: HTMLElement,};/* default value */const options = {element: document.body,};- options.element- The element to enable scrolling on.
- default: document.body
 
 
Returns
type T = void;