ngx-owl-carousel
Version:
An angular (2 or 4) wrapper for jquery owl carousel library with dynamic carousel item change detection
16 lines (15 loc) • 435 B
TypeScript
import { OnDestroy, ElementRef, OnInit } from '@angular/core';
export declare class OwlChild implements OnInit, OnDestroy {
private el;
owlClass: boolean;
$owl: any;
options: any;
currentSlideIndex: number;
constructor(el: ElementRef);
ngOnInit(): void;
ngAfterViewInit(): void;
initOwl(): void;
trigger(action: string, options?: any[]): void;
ngOnDestroy(): void;
destroyOwl(): void;
}