ngx-mzd-timeline
Version:
Minimalist's vertical timeline library for Angular applications.
13 lines (12 loc) • 542 B
TypeScript
import { AfterViewInit, OnChanges, OnInit, QueryList, SimpleChanges } from '@angular/core';
import { MzdTimelineContentComponent } from '../timeline-content/timeline-content.component';
export declare class MzdTimelineComponent implements OnInit, AfterViewInit, OnChanges {
firstContentSide: 'left' | 'right';
alternateSide: boolean;
contents: QueryList<MzdTimelineContentComponent>;
constructor();
ngOnChanges(changes: SimpleChanges): void;
ngOnInit(): void;
ngAfterViewInit(): void;
private updateContent;
}