mirror of
https://github.com/tenrok/OverlayScrollbars.git
synced 2026-06-18 13:10:36 +03:00
27 lines
662 B
TypeScript
27 lines
662 B
TypeScript
import 'index.scss';
|
|
|
|
export { OverlayScrollbars } from 'overlayscrollbars';
|
|
export { scrollbarsHidingPlugin, sizeObserverPlugin } from 'plugins';
|
|
|
|
export type {
|
|
Options,
|
|
OverflowBehavior,
|
|
ScrollbarVisibilityBehavior,
|
|
ScrollbarAutoHideBehavior,
|
|
} from 'options';
|
|
export type {
|
|
EventListenerMap,
|
|
EventListener,
|
|
InitialEventListeners,
|
|
OnUpdatedEventListenerArgs,
|
|
} from 'eventListeners';
|
|
export type {
|
|
Initialization,
|
|
InitializationTarget,
|
|
InitializationTargetElement,
|
|
InitializationTargetObject,
|
|
StaticInitializationElement,
|
|
DynamicInitializationElement,
|
|
} from 'initialization';
|
|
export type { Plugin, PluginInstance } from 'plugins';
|