Update WindowScroller.d.ts (#30599)

Add `scrollLeft` property to WindowScrollerChildProps
This commit is contained in:
Lily Montoute
2018-11-18 11:37:45 -06:00
committed by Pranav Senthilnathan
parent 9d38325dc8
commit e70dd777a8

View File

@@ -11,6 +11,7 @@ export type WindowScrollerChildProps = {
width: number;
isScrolling: boolean;
scrollTop: number;
scrollLeft: number;
onChildScroll: (params: { scrollTop: number }) => void;
};