interface ScrollWatcherConfig {
    debounceWindow?: number;
    scrollDuration?: number;
    scrollThreshold?: number;
}

Properties

debounceWindow?: number

The default value for debounceWindow in calls to ScrollWatcher.onScroll.

75
scrollDuration?: number

The default value for duration in calls to ScrollWatcher.scroll and ScrollWatcher.scrollTo.

1000
scrollThreshold?: number

The default value for threshold in calls to ScrollWatcher.onScroll.

50