| 1 | export interface VirtualListModel { |
| 2 | getRowCount(): number; |
| 3 | getRow(index: number): any; |
| 4 | /** Required if using soft refresh. If rows are equal, componentUpdater will be called instead of remove/create */ |
| 5 | areRowsEqual?(oldRow: any, newRow: any): boolean; |
| 6 | } |
no outgoing calls
no test coverage detected