SYMBOL INDEX (37 symbols across 8 files) FILE: .spire/spire-plugin-tslint.js function tslint (line 1) | function tslint({ setState }) { FILE: docs/docs/components/AsyncList/index.js constant PAGE_SIZE (line 4) | const PAGE_SIZE = 20; class AsyncList (line 6) | class AsyncList extends Component { method feedList (line 14) | feedList(repos) { method render (line 87) | render() { FILE: src/List.js constant AXIS_CSS_MAP (line 7) | const AXIS_CSS_MAP = { x: 'overflowX', y: 'overflowY' }; class List (line 9) | class List extends PureComponent { method items (line 15) | items(props, propName) { method getDerivedStateFromProps (line 50) | static getDerivedStateFromProps({ pageSize, ...props }, prevState) { method componentDidMount (line 71) | componentDidMount() { method getItemRenderer (line 120) | getItemRenderer() { method renderItems (line 139) | renderItems() { method render (line 180) | render() { FILE: src/Sentinel.js class Sentinel (line 6) | class Sentinel extends Component { method constructor (line 14) | constructor(props) { method getDerivedStateFromProps (line 29) | static getDerivedStateFromProps({ threshold, axis }, prevState) { method shouldComponentUpdate (line 41) | shouldComponentUpdate(nextProps, { rootMargin, rootElement }) { method render (line 64) | render() { FILE: src/__tests__/List.spec.js method children (line 43) | children() {} method renderItem (line 43) | renderItem() {} method children (line 48) | children() {} method renderItem (line 55) | renderItem() {} FILE: src/__tests__/Sentinel.spec.js method onChange (line 13) | onChange() {} FILE: src/utils.js function computeRootMargin (line 3) | function computeRootMargin({ threshold, axis }) { function getItemCount (line 15) | function getItemCount({ itemCount, items }, warnIfConflict) { function computeSize (line 34) | function computeSize(pageSize, itemCount) { FILE: types/index.d.ts class ListClass (line 3) | class ListClass extends React.PureComponent {} type RenderFunction (line 5) | type RenderFunction = (index: number, key: number) => JSX.Element | string; type IterableType (line 7) | type IterableType = type ChildrenAsFunction (line 15) | interface ChildrenAsFunction { type RenderAsProp (line 20) | interface RenderAsProp { type ItemCountScalar (line 25) | interface ItemCountScalar { type ItemCountIterable (line 30) | interface ItemCountIterable { type OptionalProps (line 35) | interface OptionalProps { type RenderPropType (line 48) | type RenderPropType = ChildrenAsFunction | RenderAsProp; type ItemCountPropType (line 50) | type ItemCountPropType = ItemCountScalar | ItemCountIterable; type ListProps (line 52) | type ListProps = RenderPropType & ItemCountPropType & OptionalProps;