UNPKG

ng-zorro-antd

Version:

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

26 lines (25 loc) 1.02 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 { Direction, Directionality } from '@angular/cdk/bidi'; import { ChangeDetectorRef, OnDestroy, OnInit, TemplateRef } from '@angular/core'; import { NgStyleInterface } from 'ng-zorro-antd/core/types'; import { NzStatisticValueType } from './typings'; export declare class NzStatisticComponent implements OnDestroy, OnInit { protected cdr: ChangeDetectorRef; private directionality; nzPrefix?: string | TemplateRef<void>; nzSuffix?: string | TemplateRef<void>; nzTitle?: string | TemplateRef<void>; nzValue?: NzStatisticValueType; nzValueStyle: NgStyleInterface; nzValueTemplate?: TemplateRef<{ $implicit: NzStatisticValueType; }>; dir: Direction; private destroy$; constructor(cdr: ChangeDetectorRef, directionality: Directionality); ngOnInit(): void; ngOnDestroy(): void; }