UNPKG

ng-zorro-antd

Version:

An enterprise-class UI components based on Ant Design and Angular

27 lines (26 loc) 1.17 kB
/** * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE */ import { AfterContentInit, ChangeDetectorRef, OnChanges, OnDestroy, OnInit, QueryList, SimpleChanges, TemplateRef } from '@angular/core'; import { NzTimelineItemComponent } from './timeline-item.component'; import { TimelineService } from './timeline.service'; import { NzTimelineMode } from './typings'; export declare class NzTimelineComponent implements AfterContentInit, OnChanges, OnDestroy, OnInit { private cdr; private timelineService; listOfItems: QueryList<NzTimelineItemComponent>; nzMode: NzTimelineMode; nzPending?: string | boolean | TemplateRef<void>; nzPendingDot?: string | TemplateRef<void>; nzReverse: boolean; isPendingBoolean: boolean; timelineItems: NzTimelineItemComponent[]; private destroy$; constructor(cdr: ChangeDetectorRef, timelineService: TimelineService); ngOnChanges(changes: SimpleChanges): void; ngOnInit(): void; ngAfterContentInit(): void; ngOnDestroy(): void; private updateChildren; }