UNPKG

ng-zorro-antd

Version:

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

33 lines (32 loc) 1.16 kB
/** * @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 { ElementRef, OnChanges, OnInit, TemplateRef } from '@angular/core'; import { NzSizeLDSType, NzUpdateHostClassService } from 'ng-zorro-antd/core'; import { NzListGrid } from './interface'; export declare class NzListComponent implements OnInit, OnChanges { private el; private updateHostClassService; nzDataSource: any[]; nzBordered: boolean; nzGrid: NzListGrid; nzHeader: string | TemplateRef<void>; nzFooter: string | TemplateRef<void>; nzItemLayout: 'vertical' | 'horizontal'; nzRenderItem: TemplateRef<void>; nzLoading: boolean; nzLoadMore: TemplateRef<void>; nzPagination: TemplateRef<void>; nzSize: NzSizeLDSType; nzSplit: boolean; nzNoResult: string | TemplateRef<void>; private prefixCls; private _setClassMap; constructor(el: ElementRef, updateHostClassService: NzUpdateHostClassService); ngOnInit(): void; ngOnChanges(): void; }