@uifabric/experiments
Version:
Experimental React components for building experiences for Microsoft 365.
13 lines (12 loc) • 426 B
TypeScript
import { IBaseProps } from 'office-ui-fabric-react/lib/Utilities';
export interface IScrollContainerProps extends IBaseProps {
/**
* Optional class name to add to element
*/
className?: string;
/**
* Milliseconds to wait before re-rendering after a scroll event occured, set to 0 to disable debounce.
* Only used when falling back to scroll events
* */
scrollDebounceDelay?: number;
}