UNPKG

ng-zorro-antd

Version:

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

37 lines (36 loc) 1.44 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 { ChangeDetectorRef, OnDestroy, QueryList, TemplateRef } from '@angular/core'; import { NzConfigService } from 'ng-zorro-antd/core/config'; import { BooleanInput, NzSizeDSType } from 'ng-zorro-antd/core/types'; import { NzCardGridDirective } from './card-grid.directive'; import { NzCardTabComponent } from './card-tab.component'; export declare class NzCardComponent implements OnDestroy { nzConfigService: NzConfigService; private cdr; static ngAcceptInputType_nzBordered: BooleanInput; static ngAcceptInputType_nzLoading: BooleanInput; static ngAcceptInputType_nzHoverable: BooleanInput; nzBordered: boolean; nzLoading: boolean; nzHoverable: boolean; nzBodyStyle: { [key: string]: string; }; nzCover: TemplateRef<void>; nzActions: Array<TemplateRef<void>>; nzType: string | 'inner' | null; nzSize: NzSizeDSType; nzTitle: string | TemplateRef<void>; nzExtra: string | TemplateRef<void>; listOfNzCardTabComponent: NzCardTabComponent; listOfNzCardGridDirective: QueryList<NzCardGridDirective>; private destroy$; constructor(nzConfigService: NzConfigService, cdr: ChangeDetectorRef); ngOnDestroy(): void; }