@evan.network/ui-angular-core
Version:
The angular-core operates as an global and central library for the evan.network Angular 5 frontend development. Using this project you will be able to to the following things:
29 lines (28 loc) • 850 B
TypeScript
import { // '@angular/core';
Slides } from 'angular-libs';
/**************************************************************************************************/
/**
* Ionic Slide helper service to work around Ionic bugs.
*
* @class Injectable EvanSlidesService
*/
export declare class EvanSlidesService {
/**
* require dependencies
*/
constructor();
/**
* Use this function within your component to lock slides after
* ngAfterViewInit to prevent weird slide behavior
*
* @param {Slides} slide slides object to lock
*/
afterViewInit(slide: Slides): void;
/**
* Navigate to a specific slide
*
* @param {Slide} slide slides to slide
* @param {number} index index of slide to slide to
*/
goToSlide(slide: Slides, index: number): void;
}