ng-zorro-antd
Version:
An enterprise-class UI components based on Ant Design and Angular
30 lines (29 loc) • 1.09 kB
TypeScript
/**
* @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, QueryList, Renderer2, TemplateRef } from '@angular/core';
import { NzConfigService, NzSizeDSType } from 'ng-zorro-antd/core';
import { NzCardGridDirective } from './nz-card-grid.directive';
import { NzCardTabComponent } from './nz-card-tab.component';
export declare class NzCardComponent {
nzConfigService: NzConfigService;
nzBordered: boolean;
nzLoading: boolean;
nzHoverable: boolean;
nzBodyStyle: {
[key: string]: string;
};
nzCover: TemplateRef<void>;
nzActions: Array<TemplateRef<void>>;
nzType: string;
nzSize: NzSizeDSType;
nzTitle: string | TemplateRef<void>;
nzExtra: string | TemplateRef<void>;
tab: NzCardTabComponent;
grids: QueryList<NzCardGridDirective>;
constructor(nzConfigService: NzConfigService, renderer: Renderer2, elementRef: ElementRef);
}