ngx-virtual-swiper
Version:
Swiper with virtual scroll.
13 lines (12 loc) • 449 B
TypeScript
export declare class NgxVirtualSwiperOptions {
/** returns to actual integer index */
finalize: boolean;
/**
* It's required by links, the library should know is it real swipe or fake.
* A value in px. If "touch distance" will be lower than this value then swiper will not move.
*/
threshold: number;
/** prevent all type of clicks (e.g. links, Angular`s click) */
preventClicks: boolean;
constructor();
}