RN: Fix References to ReactComponent / ReactElement
Reviewed By: sebmarkbage Differential Revision: D4023832 fbshipit-source-id: 6074efe614380119da4f8aa93b47593eeb981fbd
This commit is contained in:
parent
9df93c1071
commit
421e7880d9
|
@ -48,8 +48,6 @@ const infoLog = require('infoLog');
|
||||||
const invariant = require('fbjs/lib/invariant');
|
const invariant = require('fbjs/lib/invariant');
|
||||||
const nullthrows = require('fbjs/lib/nullthrows');
|
const nullthrows = require('fbjs/lib/nullthrows');
|
||||||
|
|
||||||
import type ReactComponent from 'ReactComponent';
|
|
||||||
|
|
||||||
const DEBUG = false;
|
const DEBUG = false;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -187,7 +185,7 @@ class WindowedListView extends React.Component {
|
||||||
_willComputeRowsToRender: boolean = false;
|
_willComputeRowsToRender: boolean = false;
|
||||||
_viewableRows: Array<number> = [];
|
_viewableRows: Array<number> = [];
|
||||||
_cellsInProgress: Set<string> = new Set();
|
_cellsInProgress: Set<string> = new Set();
|
||||||
_scrollRef: ?Object;
|
_scrollRef: ?ScrollView;
|
||||||
|
|
||||||
static defaultProps = {
|
static defaultProps = {
|
||||||
initialNumToRender: 10,
|
initialNumToRender: 10,
|
||||||
|
@ -214,7 +212,7 @@ class WindowedListView extends React.Component {
|
||||||
lastRow: Math.min(this.props.data.length, this.props.initialNumToRender) - 1,
|
lastRow: Math.min(this.props.data.length, this.props.initialNumToRender) - 1,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
getScrollResponder(): ?ReactComponent {
|
getScrollResponder(): ?ScrollView {
|
||||||
return this._scrollRef &&
|
return this._scrollRef &&
|
||||||
this._scrollRef.getScrollResponder &&
|
this._scrollRef.getScrollResponder &&
|
||||||
this._scrollRef.getScrollResponder();
|
this._scrollRef.getScrollResponder();
|
||||||
|
|
Loading…
Reference in New Issue