This works: ```ts <ViewPager onPageSelected={this.onPageSelected.bind(this)} ... /> ``` This not: ```ts <IndicatorViewPager onPageSelected={this.onPageSelected.bind(this)} ... /> ``` It complains that onPageSelected is not a prop on IndicatorViewPager, although it clearly is and would uses it to pass the event up from [this](https://github.com/zbtang/React-Native-ViewPager/blob/master/viewpager/IndicatorViewPager.js#L67) to [this](https://github.com/zbtang/React-Native-ViewPager/blob/master/viewpager/IndicatorViewPager.js#L84). Apparently, the typings aren't complete.