ng2-bootstrap
Version:
angular2 bootstrap components
13 lines (12 loc) • 393 B
TypeScript
import { OnDestroy, OnInit } from '@angular/core';
import { CarouselComponent, Direction } from './carousel.component';
export declare class SlideComponent implements OnInit, OnDestroy {
index: number;
direction: Direction;
active: boolean;
addClass: boolean;
private carousel;
constructor(carousel: CarouselComponent);
ngOnInit(): void;
ngOnDestroy(): void;
}