slide.component.d.ts 715 B

1234567891011121314151617
  1. import { OnDestroy, OnInit } from '@angular/core';
  2. import { CarouselComponent } from './carousel.component';
  3. export declare class SlideComponent implements OnInit, OnDestroy {
  4. /** Is current slide active */
  5. active: boolean;
  6. itemWidth: string;
  7. order: number;
  8. /** Wraps element by appropriate CSS classes */
  9. addClass: boolean;
  10. /** Link to Parent(container-collection) component */
  11. protected carousel: CarouselComponent;
  12. constructor(carousel: CarouselComponent);
  13. /** Fires changes in container collection after adding a new slide instance */
  14. ngOnInit(): void;
  15. /** Fires changes in container collection after removing of this slide instance */
  16. ngOnDestroy(): void;
  17. }