feat(swiper): expose full API (#19137)

* expose full swiper API

* update types

* run build

* run angular build
This commit is contained in:
Liam DeBeasi
2019-08-27 12:25:35 -04:00
committed by GitHub
parent 0e18f049c2
commit e1fa461e9b
5 changed files with 28 additions and 5 deletions

View File

@ -2388,6 +2388,10 @@ export namespace Components {
*/
'getPreviousIndex': () => Promise<number>;
/**
* Get the Swiper instance. Use this to access the full Swiper API. See https://idangero.us/swiper/api/ for all API options.
*/
'getSwiper': () => Promise<any>;
/**
* Get whether or not the current slide is the first slide.
*/
'isBeginning': () => Promise<boolean>;