DefinitelyTyped/types/react-scrollbar/index.d.ts
Forbes Lindesay 8f8f6c4392 [react] Use HTMLDialogElement for the dialog node (#23053)
* [react] Use HTMLDialogElement for the dialog node

* Actually add the `open` property

* This update requires typescript 2.6

* Update dependents of react to also require typescript 2.6
2018-02-12 12:55:52 +00:00

36 lines
1.3 KiB
TypeScript

// Type definitions for react-scrollbar 0.4.1
// Project: https://github.com/souhe/reactScrollbar
// Definitions by: Stephen Jelfs <https://github.com/stephenjelfs>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.6
/// <reference types="react" />
declare module "react-scrollbar" {
interface ScrollAreaProps extends React.Props<ScrollArea> {
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
stopScrollPropagation?: boolean,
focusableTabIndex?: number
}
class ScrollArea extends React.Component<ScrollAreaProps> {}
export = ScrollArea;
}