// Type definitions for react-scrollbar 0.4.1 // Project: https://github.com/souhe/reactScrollbar // Definitions by: Stephen Jelfs // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped /// declare module "react-scrollbar" { interface ScrollAreaProps extends __React.Props { className?: string, style?: __React.CSSProperties, speed?: number, contentClassName?: string, contentStyle?: __React.CSSProperties, vertical?: boolean, verticalContainerStyle?: __React.CSSProperties, verticalScrollbarStyle?: __React.CSSProperties, horizontal?: boolean, horizontalContainerStyle?: __React.CSSProperties, horizontalScrollbarStyle?: __React.CSSProperties, onScroll?: (value: {leftPosition: number, topPosition: number, containerHeight: number, containerWidth: number, realHeight: number, realWidth: number}) => void, contentWindow?: any, ownerDocument?: any, smoothScrolling?: boolean minScrollSize?: number, swapWheelAxes?: boolean } class ScrollArea extends __React.Component {} export = ScrollArea; }