UNPKG

ionic-framework

Version:

The ionic-framework package comes with both Javascript and Sass frontend dependencies, located in the root of the package, and a Node API, located in `tooling/`.

19 lines (18 loc) 460 B
import { List } from './list'; export declare class ListVirtualScroll { content: any; viewContainer: any; viewportHeight: any; virtualHeight: any; viewportScrollHeight: any; itemsPerScreen: any; list: List; itemHeight: number; shownItems: {}; enteringItems: any[]; leavingItems: any[]; constructor(list: List); resize(): void; _handleVirtualScroll(event: any): void; cellAtIndex(index: any): void; }