/** * @license * Copyright Alibaba.com All Rights Reserved. * * 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, OnChanges, OnDestroy, SimpleChanges, TemplateRef } from '@angular/core'; import { NzDirectionVHType, NzSafeAny, NzSizeLDSType } from 'ng-zorro-antd/core/types'; import { Observable } from 'rxjs'; import { NzListGrid } from './interface'; import { NzListFooterComponent, NzListLoadMoreDirective, NzListPaginationComponent } from './list-cell'; export declare class NzListComponent implements AfterContentInit, OnChanges, OnDestroy { nzDataSource: NzSafeAny[]; nzBordered: boolean; nzGrid: NzListGrid; nzHeader: string | TemplateRef; nzFooter: string | TemplateRef; nzItemLayout: NzDirectionVHType; nzRenderItem: TemplateRef; nzLoading: boolean; nzLoadMore: TemplateRef; nzPagination: TemplateRef; nzSize: NzSizeLDSType; nzSplit: boolean; nzNoResult: string | TemplateRef; nzListFooterComponent: NzListFooterComponent; nzListPaginationComponent: NzListPaginationComponent; nzListLoadMoreDirective: NzListLoadMoreDirective; hasSomethingAfterLastItem: boolean; private itemLayoutNotifySource; get itemLayoutNotify$(): Observable; constructor(); getSomethingAfterLastItem(): boolean; ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; ngAfterContentInit(): void; }