| 1234567891011121314151617 |
- import { OnDestroy, OnInit } from '@angular/core';
- import { CarouselComponent } from './carousel.component';
- export declare class SlideComponent implements OnInit, OnDestroy {
- /** Is current slide active */
- active: boolean;
- itemWidth: string;
- order: number;
- /** Wraps element by appropriate CSS classes */
- addClass: boolean;
- /** Link to Parent(container-collection) component */
- protected carousel: CarouselComponent;
- constructor(carousel: CarouselComponent);
- /** Fires changes in container collection after adding a new slide instance */
- ngOnInit(): void;
- /** Fires changes in container collection after removing of this slide instance */
- ngOnDestroy(): void;
- }
|