@omnia/foundation
Version:
Provide omnia foundation typings and tooling work on client side for omnia extension.
19 lines (18 loc) • 623 B
TypeScript
import { OnInit, EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
export declare class Carousel implements OnInit, OnChanges {
Datas: any[];
ActiveIndex?: number;
interval?: number;
isFullwidth?: boolean;
changable?: () => boolean;
ActiveIndexChange: EventEmitter<any>;
constructor();
ngOnInit(): void;
ngOnChanges(changes: SimpleChanges): void;
nextSlide: () => void;
prevSlide: () => void;
setActiveslide: (index: number) => void;
plusSlides: (slide: number) => void;
private setInterval;
isActive: (count: number) => boolean;
}